How to change transitions to a issue in ruby, using jira-ruby gem?
I'm trying to access jira in ruby with the Jira-ruby gem ( https://rubygems.org/gems/jira-ruby ), but i can't find how to change the transitions. I can only change it using the REST-api? There is a Transition class ( http://rubydoc.info/gems/jira-ruby/0.1.8/JIRA/Resource/Transition ), but i don't know how to deal with it. The REST API docs say that you POST to /issue/{issueIdOrKey}/transitions to transition an issue from one status to another. First fetch the available transitions for an issue: client = JIRA::Client.new( ... ) issue = client.Issue.find("PROJECT-123") available_transitions =