Created
May 17, 2016 11:49
-
-
Save daipresents/bed6653b609fd71f23f9b3cda25f0b31 to your computer and use it in GitHub Desktop.
Redmine0.9.0のスクラム化 – バーンダウンチャート(Burndown Plugin)の導入方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem install mattetti-googlecharts --source=http://gems.github.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ja: | |
| burndown: バーンダウンチャート | |
| burndown_text_no_sprint: プロジェクトには実行中のスプリントがありません。バージョンの期限日を確認してください。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #self.start_date = version.created_on.to_date | |
| self.start_date = (Date.today - 7) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ActionView::TemplateError (undefined method `show_burndown_path' for #) on line #9 of vendor/plugins/redmine_burndown/app/views/burndowns/show.html.erb: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ActionController::Routing::Routes.draw do |map| | |
| map.latest_burndown 'projects/:project_id/burndown', :controller => 'burndowns', :action => 'show' | |
| map.show_burndown 'projects/:project_id/burndowns/:id', :controller => 'burndowns', :action => 'show' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment