Project

jira-wsdl

0.0
No release in over 3 years
Low commit activity in last 3 years
working with wsdl of JIRA
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2.1.0
 Project Readme

jira-wsdl

ruby interaction with JIRA

Installation

Add this line to your application's Gemfile:

gem 'jira-wsdl'

And then execute:

$ bundle

Or install it yourself as:

$ gem install jira-wsdl

Usage

jira= JiraWsdl.new('jira.atlassian.com', 'tiago.l.nobre+test', '123qwe')

Get login token:

jira.token

Get version of the project

jira.get_version project_key

Actual version:

jira.actual_version

Next version:

jira.next_version

All version:

jira.all_versions

Get tickets:

tickets = jira.get_jira_tickets(status, project, version)

or (jql query as a string)

 tickets = jira.jqlquery(string)

or (jql query as a hash parameters)

 tickets = jira.query_by_hash(query)

Close session:

jira.logout token 

New features? Tell us what you need that we will see what we can do. :)