ruby-on-rails – 你已经激活了rake 10.0.4,但你的Gemfile需要rake 10.0.3

我的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)

任何想法为什么我收到此错误消息(我遵循的程序是Stackoverflow的建议摘要)?

解决方法

在命令中使用bundle exec infront

bundle exec rake assets:precompile

这将解决您的问题.

I always recommend to use "bundle exec" before any such kind of commands.

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...