我尝试在 redmine 中配置插件,在获得插件的 github 链接后,它已成功安装,并且这些命令运行顺利:
sudo gem update
sudo gem install bundler
sudo gem update --system
sudo gem pristine bundler
但是当我写的时候我得到了这个错误
sudo bundle update rake
执行此命令后我收到错误,并附上屏幕截图。
Bundler 找不到 gem“actionpack”的兼容版本:
在快照(Gemfile.lock)中:
actionpack (= 4.2.10)
在 Gemfile 中:
rails (~> 4.2.8) was resolved to 4.2.10, which depends on
actionpack (= 4.2.10)
rails-controller-testing (~> 1.0.4) was resolved to 1.0.4, which depends on
actionpack (>= 5.0.1.x)
运行bundle update
将从头开始重建你的快照,仅使用你的 Gemfile 中的 gem,这可能会解决冲突。
我希望有人知道解决办法。