Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Atlassian Python Api | 1,020 | 5 | 44 | 10 days ago | 239 | May 25, 2022 | 163 | apache-2.0 | Python | |
Atlassian Python REST API wrapper | ||||||||||
Jira Ruby | 621 | 1,045 | 61 | 2 months ago | 44 | January 23, 2021 | 82 | mit | Ruby | |
A Ruby gem for the JIRA REST API | ||||||||||
Php Jira Rest Client | 479 | 32 | 20 | 2 months ago | 137 | October 03, 2022 | 10 | other | PHP | |
PHP classes interact Jira with the REST API. | ||||||||||
Node Jira Client | 393 | 86 | 76 | 5 months ago | 57 | March 08, 2022 | 33 | mit | JavaScript | |
A Node.js wrapper for the Jira REST API | ||||||||||
Node Jira | 379 | 183 | 45 | 4 years ago | 23 | September 06, 2014 | 76 | JavaScript | ||
A nodejs wrapper for the JIRA REST API | ||||||||||
Jira Connector | 360 | 90 | 63 | 3 years ago | 47 | December 18, 2019 | 29 | mit | JavaScript | |
NodeJS Wrapper for the Jira REST API | ||||||||||
Jiraps | 281 | 7 months ago | 112 | mit | PowerShell | |||||
PowerShell module to interact with Atlassian JIRA | ||||||||||
Jira Api Restclient | 219 | 53 | 14 | 6 months ago | 1 | July 27, 2014 | 50 | mit | PHP | |
php JIRA REST API | ||||||||||
Jira.js | 192 | 17 | 6 days ago | 71 | January 09, 2023 | 4 | mit | TypeScript | ||
A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API | ||||||||||
Camunda Excamad | 191 | 9 months ago | 12 | gpl-3.0 | Vue | |||||
External camunda admin portal, which make live in multi-camunda`s environment much easy #camunda |
Add this line to your application's Gemfile:
gem 'jirarest'
And then execute:
$ bundle
Or install it yourself as:
$ gem install jira-rest
require 'jira-rest'
@jira = JiraRest::Client.new(jira_host, username, password)
Query by hash
hash_query = {:project => 'DEMO', :status => '"in progress", Open'}
@jira.search.query_by_hash(hash_query)
optional:
@jira.search.query_by_hash(hash_query, return_fields, maxresults)
Query by jql string
jql_query = "project in (DEMO) AND status in ("in progress", Open)"
@jira.search.jqlquery(jql_query)
optional:
@jira.search.jqlquery(jql_query, return_fields, maxresults)
Search by issue key
@jira.search.issue "JRA-9"
Get filter issues
@jira.search.filter "12843"
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)gem 'jirarest'
And then execute:
$ bundle
Or install it yourself as:
$ gem install jira-rest
require 'jira-rest'
@jira = JiraRest::Client.new(jira_host, username, password)
Query by hash
hash_query = {:project => 'DEMO', :status => '"in progress", Open'}
@jira.search.query_by_hash(hash_query)
optional:
@jira.search.query_by_hash(hash_query, return_fields, maxresults)
Query by jql string
jql_query = "project in (DEMO) AND status in ("in progress", Open)"
@jira.search.jqlquery(jql_query)
optional:
@jira.search.jqlquery(jql_query, return_fields, maxresults)
Search by issue key
@jira.search.issue "JRA-9"
Get filter issues
@jira.search.filter "12843"
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)