我试图将我的ruby 1.9.3更新为2.2.2,当我在本地测试一切都工作正常,但是当我尝试推送到heroku我得到了雨滴问题版本然后我更新雨按命令下降
bundle update raindrops
但在那之后,当我检查这个Gemfile.lock时,它显示
GEM
remote: https://rubygems.org/
specs:
raindrops (0.17.0)
unicorn (4.6.3)
kgio (~> 2.6)
rack
raindrops (~> 0.7)
在这里,独角兽下的雨滴没有变化,另一只只是改变了,它成功地推动了,在生产的任何时候都会为独角兽做出任何问题吗?
答案 0 :(得分:0)
像这样读你GEM
remote: https://rubygems.org/
specs:
raindrops (0.17.0) # <- This is the installed version (0.17.0 is the latest)
unicorn (4.6.3)
kgio (~> 2.6)
rack
raindrops (~> 0.7) # <- This is the version unicorn depends on
:
unicorn
您已安装该gem的最新版本(请参阅RubyGems上的raindrops
页面)。 raindrops
本身取决于0.7
和< 1.0
之间的0.17.0
版本,版本{{1}}符合此要求。
一切都好!