KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
lita-jira
★ 15
Open GitHub ↗
A JIRA plugin for Lita
Download README (.md)
Explore Similar Repositories
notebooks
:
An attempt to formalize my thoughts. A pythonic approach to mental housekeeping
SearchBarFun
:
iOS 7 Searchbar transition expirement
tegra-ubuntu
:
No description available.
usemodify
:
Use & Modify is just a a copy of Ofont
OST-Ghost-Theme
:
OSTraining.com Ghost theme with tutorial
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
lita-jira
?
Download (.md)
# lita-jira [](https://travis-ci.org/esigler/lita-jira) [](https://tldrlegal.com/license/mit-license) [](https://rubygems.org/gems/lita-jira) [](https://codeclimate.com/github/esigler/lita-jira) [](https://gemnasium.com/esigler/lita-jira) A [JIRA](https://www.atlassian.com/software/jira) plugin for [Lita](https://github.com/jimmycuadra/lita). ## Installation Add lita-jira to your Lita instance's Gemfile: ``` ruby gem "lita-jira" ``` ## Configuration Add the following variables to your lita config file: ``` ruby config.handlers.jira.username = 'your_jira_username' config.handlers.jira.password = 'a_password' config.handlers.jira.site = 'https://your.jira.instance.example.com/' ``` ### Optional attributes * `context` (string) - If your instance is in a /subdirectory, put that here. Default: `''` * `format` (string) - You can select a compact one line issue summary by setting this parameter to `one-line`. Default: `verbose` * `ambient` (boolean) - When set to `true`, Lita will show JIRA issue details when a JIRA issue key is mentioned in chat, outside the context of a command. Default: `false` * `ignore` (array) - Prevent ambient JIRA issue detection in certain users' messages. Accepts user names, mention names, and IDs. Default: `[]` * `rooms` (array) - Limit ambient JIRA issue detection to a certain list of rooms. If unspecified, the bot will respond to detected issues in all rooms. * `use_ssl` (boolean) - When set to `true`, an SSL connection will be used to JIRA. Set to `false` if you run JIRA over plain http. ``` ruby config.handlers.jira.context = '/myjira' config.handlers.jira.format = 'one-line' config.handlers.jira.ambient = true config.handlers.jira.ignore = ['Jira', 'Github', 'U1234'] config.handlers.jira.rooms = ['devtools', 'engineering'] config.handlers.jira.use_ssl = false ``` ## Usage ### Shortcuts ``` todo <project> "<subject>" ["<summary>"] - Creates an issue in <project> with <subject> and optionally <summary> ``` ``` jira <issue> - Shows a short summary <issue> jira details <issue> - Shows all details about <issue> jira comment on <issue> <comment text> - Adds <comment text> to <issue> jira myissues - Displays a list of issues assigned to identified user ``` ### Misc ``` jira identify <email address> - Associate your chat user with your email address jira forget - Remove your chat user / email association jira whoami - Show your chat user / email association ``` ## CHANGELOG [CHANGELOG](https://github.com/esigler/lita-jira/releases) ## License [MIT](http://opensource.org/licenses/MIT)