LoginSignup
2
4

More than 3 years have passed since last update.

Redmine > plug-in > 入れたプラグイン

Last updated at Posted at 2017-11-24

環境

Bitnami Redmine 3.4.3
OS: Windows7

参考

Redmineを3年間使い続けてお世話になったプラグインたち - Qiita

入れたプラグイン

Easy Redmine

Redmine Gantt Plugin - Easy Redmine
使い始めるには登録が必用のようです。

うまく動かない場合

gemを更新

gem -v
gem install rubygems-update --source http://rubygems.org/
update_rubygems
gem -v

以下を参考に
Bitnami Redmine に Easy Gantt プラグインを入れると Your application is not available となる - スタック・オーバーフロー

以下をそれぞれ実行したら動作した


bundle install
bundle install --no-deployment
gem update --system 
bundle install
bundle exec rake db:migrate RAILS_ENV=production
bundle exec rake redmine:plugins:migrate RAILS_ENV=production

REDMINE AGILE PLUGIN

Redmine Agile Plugin for Agile Project Management from RedmineUP

Easy Redmine同様にプラグインフォルダにファイルを配置後、以下を実行。

bundle install
bundle exec rake db:migrate RAILS_ENV=production
bundle exec rake redmine:plugins:migrate RAILS_ENV=production

Userbility

Plugin for «Redmine» | RM+

ダウンロードしたらUserbilityとa_common_libsが2つセットになっている。
どちらも\htdocs\plugins 下に配置する。

bundle install
bundle exec rake db:migrate RAILS_ENV=production
bundle exec rake redmine:plugins:migrate RAILS_ENV=production

以下試行中

redmine_backlogs

backlogs/redmine_backlogs at feature/redmine3

エラーが出た。


 #  from C:/Bitnami/redmine-3.4.3-1/apps/redmine/htdocs/plugins/redmine_backlogs-feature-redmine3/Gemfile:11
 #  -------------------------------------------
 #  # thin doesn't work for jruby >  gem "thin", :platforms => [:ruby]
 #  redmine_version_file = File.expand_path("../../lib/redmine/version.rb",FILE)
 #  -------------------------------------------. Bundler cannot continue.
 #  from C:/Bitnami/redmine-3.4.3-1/apps/redmine/htdocs/Gemfile:111
 #  -------------------------------------------
 #    eval_gemfile file >  end
 #  source 'https://rubygems.org'
 #  -------------------------------------------

以下を参考に修正
Windows版bitnamiのredmine3.2.1にbacklogsを入れました - Qiita

redmine_backlogs-feature-redmine3/Gemfile から以下の行を削除


gem "nokogiri"
gem "capybara", "~> 1"
gem "thin", :platforms => [:ruby]

bundle install --without development test --path vendor/bundle

bundle install --no-deployment

redmine issues tree

サイト
Loriowar/redmine_issues_tree: Provides a tree view of the Redmine issues list

インストール要領
Plugins - Redmine

方法


bundle install

不要になったもの

clipboard image paste

これはクリップボードの画像を簡単に添付ファイルに添付できるプラグインだが、
上記のUserbilityの方が使い勝手がいいので、不要になった

旧名称はRedmine Attach Screenshot? いくつかのサイトで紹介されてますが名称が変わった模様。
peclik/clipboard_image_paste: Redmine plugin for pasting cropped image from clipboard as an attachment.

使った直後に、「なぜ今まで使わなかったのか」とすごく悔やんだ。
クリップボードから画像を追加 をポチッと押すだけで画像を追加できる。
image.png

image.png

方法

プラグインフォルダにプラグインを置くだけ。

2
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
4