how can I pass Jira Ticket-ID as a command-line argument to the ruby script? I'm using Jira-ruby gem. I have a script in which I have to find a particular Jira ticket and comment on it. I want to pass that ticket from the command line to the ruby script. Thanks in advance
jira_client.Issue.find("ID-10389")
comment = issue.comments.build
comment.save!(:body => "New comment from example script")`
end