tiagolnobre / jira-wsdl

ruby JIRA Wsdl API (Deprecated)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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. :)

About

ruby JIRA Wsdl API (Deprecated)

License:MIT License


Languages

Language:Ruby 87.7%Language:Gherkin 12.3%