您好我正在使用Rails应用程序,当我捆绑安装时会返回错误:
Could not find coffee-script-source-1.1.3 in any of the sources
我知道 coffee-script-source-1.1.3 gem 已弃用/被淘汰但我的其他宝石与此有依赖关系。
但是这个项目正在与其他机器和heroku生产合作。 如何在不更改gem文件的情况下成功捆绑安装? 谢谢
答案 0 :(得分:13)
运行:
bundle update --source coffee-script-source
如果您收到错误,请执行以下操作:
An error occurred while installing rmagick (2.13.1), and Bundler cannot continue.
运行:
gem install rmagick
我希望它会对你有所帮助。
答案 1 :(得分:0)
它对我有用的是将gem升级为 1.2.0 。
此处显示为https://rubygems.org/gems/coffee-script-source/versions 1.1.3表示已被取消。
gem 'coffee-script-source', '~> 1.2.0'
然后运行
bundle update --source coffee-script-source