我试图在我的宝石文件中指定一个版本的
thrift gem.
gem 'thrift',"~> 0.6.0"
当我尝试运行捆绑安装,我得到这个错误:
You have requested: thrift ~> 0.6.0 The bundle currently has thrift locked at 0.5.0. Try running `bundle update thrift`
我如何才能找出导致它被锁在早期版本的原因?是否在宝石文件中列出的另一个宝石的要求?
还是只是因为安装的版本是0.5.0,而且在gem文件中指定版本不会更新已安装的gem?
解决方法
结果只是运行捆绑更新节俭将显示什么是锁定版本:
$bundle update thrift Fetching source index for http://rubygems.org/ Bundler could not find compatible versions for gem "thrift": In Gemfile: evernote depends on thrift (~> 0.5.0) thrift (0.6.0)