jireport is console app in ruby 1.9
It is designed to create custom reports of issue resolve activity in JIRA.
Three scripts available:
-
bin/fetch
Fetches issues state and tracks it to database, allowing to add additional data based on comparison with already stored one. Database is accessed via ActiveRecord (from Rails 3.0).
-
bin/report
Generates report based on stored data, for now, using Google Spreadsheet API.
-
bin/report_cur_week
Generates report for current week.
-
Clone this repo to your machine:
git clone git://github.com/netoctone/jireport.git; cd jireport
-
Install bundler if you haven’t yet:
gem install bundler
-
Install required gems:
bundle install
-
Configure all files in
config/
directory, create database according to it. -
Run database migrations:
rake migrate
-
Correct sha-bang in
bin/fetch
,bin/report
andbin/report_cur_week
. -
???
-
PROFIT