Ruby on rails ruby 2.2.2的Gem更新问题

Ruby on rails ruby 2.2.2的Gem更新问题,ruby-on-rails,ruby,rubygems,unicorn,Ruby On Rails,Ruby,Rubygems,Unicorn,我试图将我的ruby 1.9.3更新为2.2.2,当我在本地测试时,一切正常,但当我尝试推送到heroku时,我得到了Raindropes发行版,然后我通过命令更新raindrops bundle update raindrops 但在那之后,当我检查这个Gemfile.lock时,它显示 GEM remote: https://rubygems.org/ specs: raindrops (0.17.0) unicorn (4.6.3) kgio (~> 2.6) rac

我试图将我的ruby 1.9.3更新为2.2.2,当我在本地测试时,一切正常,但当我尝试推送到heroku时,我得到了Raindropes发行版,然后我通过命令更新raindrops

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)
在这里,麒麟下的雨滴没有变化,另一个只是变化了,它推成功了,它会在生产过程中的任何时候为麒麟制造任何问题吗?

像这样阅读Gemfile.lock:

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
您已经安装了该gem的最新版本,请参见RubyGems页面。独角兽本身依赖于介于0.7和<1.0之间的雨滴版本,0.17.0版本满足此要求


一切都好

谢谢,我怎么知道这句话独角兽本身取决于0.7和<1.0之间的雨滴版本,0.17.0版本实现了这句话,意思是感谢~>被称为。