既存のredmine3.2用のpluginとの共存と適用は可能か?という観点での検証です。
既に、今稼働中のredmine3.2(もちろん、Bitnami-stackですが)の利用中のプラグインは以下のとおりです。
これらを一気に導入して見ましょう。
おっと、常套手段のrake plugins:migrateでは上手く行きません。
記載されているとおり、bundle installしてみます。
なんとか、simplecov-rcovが導入されたようなので、再度rakeしてみましょう。
これで、再起動したら、ごらんの通り、組み込み完了です。
投了!
既に、今稼働中のredmine3.2(もちろん、Bitnami-stackですが)の利用中のプラグインは以下のとおりです。
Redmine plugins:
clipboard_image_paste 1.10
redmine_issue_templates 0.1.1
redmine_issues_summary_graph 0.0.9
redmine_logs 0.1.0
redmine_monitoring_controlling 0.1.1
redmine_my_calendar 0.0.1
redmine_wiki_extensions 0.7.0
redmine_wiki_lists 0.0.6
これらを一気に導入して見ましょう。
[root@docker-con /]# cd /opt/redmine/apps/redmine/htdocs/plugins/
[root@docker-con plugins]# ls
clipboard_image_paste redmine_issues_summary_graph redmine_logs redmine_my_calendar redmine_wiki_extensions
README redmine_issue_templates redmine_monitoring_controlling redmine_slack redmine_wiki_lists
[root@docker-con htdocs]# cd ..
[root@docker-con htdocs]# rake --trace redmine:plugins:migrate RAILS_ENV=production
Could not find gem 'simplecov-rcov (>= 0) ruby' in any of the gem sources listed in your Gemfile or available on this machine.
Run `bundle install` to install missing gems.
おっと、常套手段のrake plugins:migrateでは上手く行きません。
記載されているとおり、bundle installしてみます。
[root@docker-con htdocs]# bundle install
・・・
Your Gemfile lists the gem simplecov-rcov (>= 0) more than once.
You should probably keep only one of them.
While it's not a problem now, it could cause errors if you change the version of just one of them later.
Fetching gem metadata from https://rubygems.org/...........
Fetching version metadata from https://rubygems.org/...
Fetching dependency metadata from https://rubygems.org/..
Resolving dependencies.......
Using rake 10.4.2
・・・
Installing simplecov-html 0.9.0
Installing simplecov 0.9.2
Installing simplecov-rcov 0.2.3
Bundle complete! 33 Gemfile dependencies, 59 gems now installed.
Gems in the groups development, test and sqlite were not installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
なんとか、simplecov-rcovが導入されたようなので、再度rakeしてみましょう。
[root@docker-con htdocs]# rake --trace redmine:plugins:migrate RAILS_ENV=production
** Invoke redmine:plugins:migrate (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute redmine:plugins:migrate
Migrating clipboard_image_paste (Clipboard image paste)...
Migrating redmine_issue_templates (Redmine Issue Templates plugin)...
Migrating redmine_issues_summary_graph (Redmine Issues Summary Graph plugin)...
Migrating redmine_logs (Redmine Logs plugin)...
Migrating redmine_monitoring_controlling (Redmine (Monitoring & Controlling | Monitoramento & Controle))...
Migrating redmine_my_calendar (Redmine My Calendar plugin)...
Migrating redmine_slack (Redmine Slack)...
Migrating redmine_wiki_extensions (Redmine Wiki Extensions plugin)...
Migrating redmine_wiki_lists (Redmine Wiki Lists plugin)...
** Invoke db:schema:dump (first_time)
** Invoke environment
** Invoke db:load_config (first_time)
** Execute db:load_config
** Execute db:schema:dump
これで、再起動したら、ごらんの通り、組み込み完了です。
投了!