Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Jira Connector | 360 | 90 | 63 | 3 years ago | 47 | December 18, 2019 | 29 | mit | JavaScript | |
NodeJS Wrapper for the Jira REST API | ||||||||||
Symlex | 289 | 2 years ago | 63 | August 17, 2020 | 17 | mit | PHP | |||
A lean framework stack for agile Web development based on Symfony and Vuetify | ||||||||||
Jira.js | 192 | 17 | 3 days ago | 71 | January 09, 2023 | 4 | mit | TypeScript | ||
A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API | ||||||||||
Kanban Board | 137 | 5 months ago | 27 | Java | ||||||
Single-click full-stack application (Postgres, Spring Boot & Angular) using Docker Compose | ||||||||||
Rallyresttoolkitforpython | 87 | 8 | 1 | a year ago | 27 | July 23, 2021 | 11 | other | Python | |
Python Toolkit for Rally | ||||||||||
Agile Wroking Backend | 64 | 3 years ago | mit | Java | ||||||
AgileWorking 是一个团队协作的微信小程序,此工程为小程序的后台实现 | ||||||||||
Api | 10 | 2 years ago | 7 | PHP | ||||||
Implementation of RestAPI for Agile Data | ||||||||||
Jira_agile_api | 6 | 8 years ago | mit | Ruby | ||||||
Ruby Wrapper for Jira Agile REST API | ||||||||||
Dbagile | 6 | 2 | 12 years ago | 2 | June 14, 2011 | other | Ruby | |||
Agile SQL databases and tools for database administrators | ||||||||||
Spring Hibernate Datamodeling Tdd Rest | 5 | 3 years ago | Java | |||||||
This gem allows you to easily use the Jira Agile API.
It’s powered by Faraday and Virtus.
##Demonstration
Dash of Agile uses jira_agile_api
to create agile dashboards from Jira Agile projects.
Add this line to your application's Gemfile:
gem 'jira_agile_api', '~> 0.1.0'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install jira_agile_api
client = JiraAgileApi::Client.new(token: 'my-api-token') # Create API client
rapid_views = client.rapid_views # Get all rapid views
rapid_view = client.rapid_view(123456) # Get rapid view with given ID
rapid_view.sprints # Get all sprints for a rapid view
Currently this client supports read-only access to Jira Agile. We will be extending it as our use cases require, but are always happy to accept contributions.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)