##JIRA Open Issues Widget For Dashing Simple widget that fetches current issues from JIRA by using a JQL Search. Data is displayed using th e included Numbers widget in Dashing.
##Usage
-
Install Widget By Adding
jira.rb
to thejobs
directory, or install by callingdashing install 3186a5869684bb514ad3
-
Add
gem 'jira-ruby', :require => 'jira'
to yourGemfile
-
Change to match your needs:
host = "HOST GOES HERE" username = "USERNAME GOES HERE" password = "PASSWORD GOES HERE" project = "PROJECT NAME GOES HERE" status = "OPEN STATUS GOES HERE" ```
-
Add to
dashboard.erb
file:<li data-row="1" data-col="2" data-sizex="1" data-sizey="1"> <div data-id="jira" data-view="Number" data-title="Open Issues"></div> </li>
For some reason, this seems to fail if there is a larger number of tickets, it always shows 50, then. I couldn't get it to work properly.
EDIT: JIRA Limits queries to maxResults=50 by default.