Project

simpleJira

0.0
No commit activity in last 3 years
No release in over 3 years
A simple Ruby gem for the JIRA REST API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Introduction¶ ↑

Simple Ruby wrapper for some basic functionalities of the JIRA Project Tracker API.

Getting Started¶ ↑

Install the gem at the command prompt:

gem install simpleJira

Example¶ ↑

client = SimpleJira::Client.new(:login => 'my_jira_login', :password => 'my_jira_password', :jira_url => 'my_jira_website')
client.list_comments(issue_id)                        # list all comments of an issue
client.create_comment(issue_id, 'my commentary')      # add a comment to an issue
client.list_available_transitions(issue_id)           # list all available transitions for the current status of an issue
client.set_transition(issue_id, transition_id)        # transition an issue into another status