在安装redmine的过程中,执行bundle exec rake db:migrate RAILS_ENV="production"
bundle exec rake db:migrate RAILS_ENV="production"
报出错误:LoadError: cannot load such file – rbpdf-font
LoadError: cannot load such file – rbpdf-font
解决办法
在redmine根目录下的Gemfile中添加
gem "rbpdf-font"
重新执行 bundle install
bundle install
参考在Ubuntu上安装redmine