##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>
Try this:
change "... AND STATUS = "#{status}"" ..." to "... AND STATUS in ("#{status}")" ..."
and "... status = "In Progress, Reopened, Need Info" ..."