Sha256: 5451e82c23ae089a0227be9c51c72834dd993c192fe000ffd23579fffa63cd3a

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

jira issues
===========

[![Build Status](https://travis-ci.org/filipjakubowski/jira_issues.svg?branch=master)](https://travis-ci.org/filipjakubowski/jira_issues)

## description

Gem that allows you to navigate throu jour JIRA projects easily, get stats and in future to transit and manage tickets. 

Results of JIRA JQL are stripped to selected fields for more user friendly exposure. 

## Getting Started

First you need to set up your environment variables to access your JIRA repository. 
Please keep in mind that gem will have all and only access to issues and project that reflects access of selected account. 

- **ENV['JIRA_URL']**
- **ENV['JIRA_USERNAME']**
- **ENV['JIRA_PASSWORD']**  

## Running JQL Query

'''
require 'jira_issues'
q = JiraIssues::JiraQuery.new
issues_navigator = jq.jql_query 'project = "Project Name" and ( created > -40d or status not in (Done) )'
'''

## Filtering issues

'''
issues_navigator.open.issues -- open issues
issues_navigator.closed.issues -- closed issues
'''

## Stats

'''
issues_navigator.created_by_week
issues_navigator.closed_by_week
'''

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jira-issues-0.0.2 README.md