Rails 3.0 应用程序(安装 Rails 3.1 之后)现在会出现 rake 错误
收到消息 您已经激活了 rake 0.9.2,但您的 Gemfile 需要 rake 0.8.7。考虑使用捆绑执行。
看到“将标准 Ruby 安装从 Rake 0.8.7 更新到 Rake 0.9.2”的参考资料,
我该如何进行此更新?
getting a message
You have already activated rake 0.9.2, but your Gemfile requires rake 0.8.7. Consider using bundle exec.
saw references to "update the standard Ruby installation from Rake 0.8.7 to Rake 0.9.2"
how do I do this update?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试执行
捆绑更新rake
这将更新rake并解决依赖关系。
Try doing a
bundle update rake
This will update rake and resolve the dependencies.
您希望您的命令带有“bundle exec”,不带双引号
You want to your commands with "bundle exec " without the double quotes