Simple Jira command line tool
This is a stub for a set of very simple command lines tools to access Jira tickets through the REST api
Install it yourself as:
$ gem install mongo-jira
Create a file called .mongo-jira.json in your home dir (alternatively use the -c flag to set different location). Add the following :
{
"username": "[email protected]",
"password": "Base64EncodedPassword==",
"site": "https://jira.mongodb.org",
"auth_type": "basic",
"context_path": ""
}
If you omit the password, then you will be asked for one.
Change and ;-)
Execute the following command, if your config is correct you should see all your Jira projects:
jira test
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request