Sha256: c81d06ef1685773e21f9ef811d9f1dd74c9855cb300de10d11388adcb34e7aff
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
# lita-youtrack lita-youtrack is a handler for Lita that integrates YouTrack with Lita, displaying and providing links to various YouTrack issues ## Installation Add this line to your application's Gemfile: ```ruby gem 'lita-youtrack' ``` And then execute: $ bundle Or install it yourself as: $ gem install lita-youtrack ## Configuration ```` Lita.configure do |config| ... config.handlers.youtrack.login = ENV["YOUTRACK_LOGIN"] config.handlers.youtrack.password = ENV["YOUTRACK_PASSWORD"] config.handlers.youtrack.hosturl = ENV["YOUTRACK_HOSTURL"] ... end ```` YOUTRACK_LOGIN is your YouTrack login YOUTRACK_LOGIN is your YouTrack password YOUTRACK_HOSTURL is the location where your YouTrack service is being hosted ## Usage To display every youtrack project ```lita projects``` To display issues from a specific project (PROJECTNAME is the abreviated name shown by 'lita projects') ```lita project PROJECTNAME``` To display issues labeled as bugs, not including those in the 'parking lot' ```lita bugs``` To display issues labeled as bugs, including the 'parking lot' ```lita bugs parking``` ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lita-youtrack-0.1.0 | README.md |