https://github.com/jirutka/redmine_agile
Archive of redmine_agile plugin downloaded from https://www.redmineup.com/pages/plugins/agile
https://github.com/jirutka/redmine_agile
redmine redmine-plugin
Last synced: 8 months ago
JSON representation
Archive of redmine_agile plugin downloaded from https://www.redmineup.com/pages/plugins/agile
- Host: GitHub
- URL: https://github.com/jirutka/redmine_agile
- Owner: jirutka
- License: gpl-2.0
- Created: 2023-04-04T14:53:45.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-03-24T10:38:07.000Z (about 1 year ago)
- Last Synced: 2025-03-24T11:36:25.784Z (about 1 year ago)
- Topics: redmine, redmine-plugin
- Language: Ruby
- Homepage: https://www.redmineup.com/pages/plugins/agile
- Size: 475 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE
Awesome Lists containing this project
README
= Agile plugin
== Install
* Copy redmine_agile plugin to {RAILS_APP}/plugins on your redmine path
* Run bundle install --without development test RAILS_ENV=production
* Run bundle exec rake redmine:plugins NAME=redmine_agile RAILS_ENV=production
== Uninstall
bundle exec rake redmine:plugins NAME=redmine_agile VERSION=0 RAILS_ENV=production
rm -r plugins/redmine_agile
== Test
bundle exec rake db:drop db:create db:migrate redmine:plugins RAILS_ENV=test
bundle exec rake test TEST="plugins/redmine_agile/test/**/*_test.rb" RAILS_ENV=test
== API
* REST API agile_sprint
API request #index
GET /projests//agile_spints.xml or /projests//agile_spints.json
API request #show
GET /projests//agile_spints/.xml or /projests//agile_spints/.json
Example: GET demo.redmineup.com/projects/agile/agile_sprints/3.json
API request #create
POST /projects//agile_sprints.json?key=
{
"agile_sprint": {
"name": "Sprint 46",
"start_date": "23.07.2022",
"end_date": "24.07.2022"
}
}
API request #update
PUT /projects//agile_sprints/.json?key=
{
"agile_sprint": {
"name": "New name",
}
}
API request #destroy
DELETE /projests//agile_spints/.xml or /projests//agile_spints/.json
Example: DELETE demo.redmineup.com/projects/agile/agile_sprints/67.json