Skip to content

Instantly share code, notes, and snippets.

@ShoopIndy
Last active December 17, 2015 12:09
Show Gist options
  • Save ShoopIndy/5607733 to your computer and use it in GitHub Desktop.
Save ShoopIndy/5607733 to your computer and use it in GitHub Desktop.
updating description with ruby-jira
require 'jira'
options = {
:username => username,
:password => password,
:site => 'https://XXXXXX.atlassian.net/',
:context_path => '',
:auth_type => :basic
}
client = JIRA::Client.new(options)
issue = client.Issue.find('TES-116')
issue.save({:fields=>{:description=>"EVEN MOOOOOOARRR NINJAAAA!"}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment