# redmine_agile **Repository Path**: teiya_admin/redmine_agile ## Basic Information - **Project Name**: redmine_agile - **Description**: No description available - **Primary Language**: Ruby - **License**: MPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-17 - **Last Updated**: 2024-12-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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