Redmine backlogs インストール

詰まって参考にしたサイト

http://forza.cocolog-nifty.com/blog/2011/04/redminebacklogs.html

 

 

 

以下のエラーがでたら

ome gems may need to be installed or updated.
Please run `bundle install –without development test`.

 

Gemfileの以下を削除して

# Database gems
platforms :mri, :mingw do
  group :postgresql do
    gem “pg”, “>= 0.13.2”
  end

  group :sqlite do
    gem “sqlite3”
  end
end

 

bundleを実行

 

bundle install –without development test