我的Gemfile中有什么
gem’rake’,’10 .0.3’#gemfile中的第一行
删除了Gemfile.lock
运行Bundle更新
Ran bundle update rake
运行资产:预编译
我收到以下消息:
You have already activated rake 10.0.4,but your Gemfile requires rake 10.0.3.
捆绑包含的宝石:
.... * rake (10.0.3)
解决方法
在命令中使用bundle exec infront
bundle exec rake assets:precompile
这将解决您的问题.
I always recommend to use "bundle exec" before any such kind of commands.