我刚刚升级到ruby 1.9.3和rails 3.2.2。我正在尝试创建此应用程序:
rails new myapp -m https://github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-omniauth-template.rb -T -O
在安装结束时,它给出了错误:
The template [https://github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-omniauth-template.rb] could not be loaded. Error: You have already activated rake 0.9.2, but your Gemfile requires rake 0.9.2.2. Using bundle exec may solve this.
如果我做RVM宝石列表或宝石列表,我会得到两个版本的rake:
rake (0.9.2.2, 0.9.2)
我如何告诉RVM或其他什么我必须告诉,只使用最新的?
答案 0 :(得分:2)
您应该在捆绑包的上下文中运行它。
bundle exec rails new myapp -m https://github.com/RailsApps/rails3-application-templates/raw/master/rails3-mongoid-omniauth-template.rb -T -O
答案 1 :(得分:1)
在Gemfile
中明确说明您想要的版本。
gem "rake", "0.9.2"
使用以下内容更新您的Gemfile.lock
$ bundle update
删除您不想要的版本。
$ gem uninstall rake -v 0.9.2.2
您可以根据您实际想要使用的宝石来反转这些数字。