A command-line tool for everyday operations in jira
- clone the repo
- add the repo directory to your path
- cd to your repo directory and run "bundle install"
- set your jira username to the IH8_JIRA_USERNAME environment variable
- set your jira password to the IH8_JIRA_PASSWORD environment variable
- mv config.yml.example to config.yml and put data for your jira instance in it
$ ih8-jira new --summary "text" --assignee=fred --priority="Low" --description="text"
DEMO-555
$ ih8-jira delete DEMO-555
$ ih8-jira set --summary "text" --assignee=fred --priority="Low" --description="text"
$ ih8-jira show --issue_id=DEMO-555
$ ih8-jira show
$ ih8-jira show --ignore_closed --ignore_backlog
$ ih8-jira show --section="Backlog"
$ ih8-jira show --section="To Do" --assignee=fred
$ ih8-jira move DEMO-555 "In Progress"