Open6

Redmineのプラグインとテーマ

にしこにしこ

https://github.com/themondays/Dwarf

Installation
Copy production/dwarf directory to the Redmine's /public/themes directory on your Redmine instance. Basically you should have something like that /public/themes/dwarf
Restart Redmine instance.
Activate theme inside settings.
If after Redmine instance restart theme didn't appear in your list, please ensure that theme stylesheet available at the following location /public/themes/dwarf/stylesheets/application.css

インストール

$ cd [Redmineインストールディレクトリ]/public/themes/
$ git clone https://github.com/themondays/Dwarf.git dwarf

にしこにしこ

bundle install --without development test について

プラグインインストールの際には下記を実行するように指示されるが……

$ bundle install --without development test --no-deployment

下記のエラーが出るので

[DEPRECATED] The --without flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use bundle config set --local without 'development test', and stop using this flag
[DEPRECATED] The --no-deployment flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use bundle config set --local deployment 'false', and stop using this flag

今後はこうするのが良いのかな……?

$ bundle config set --local without 'development test'
$ bundle config set --local deployment 'false'
$ bundle install