heroku rake db:迁移,rake 中止!未定义方法“任务”;
当我跑步时: heroku rake db:migrate,
我收到此错误消息:
rake aborted!
undefined method 'task' for #<'Myapp::Application:0x7f07c011f4f8>
我正在运行 rake 0.8.7 并已卸载 rake 0.9。
另外,当我添加 --trace 时,会出现这些文件:(
/app/.bundle/gems/ruby/1.8/gems/railties-3.0.7/lib/rails/application.rb
/app/.bundle/gems/ruby/1.8/gems/rake-0.9.0/lib/rake/rake_module.rb
/app/.bundle/gems/ruby/1.8/gems/rake-0.9.0/lib/rake/application.rb
抱歉,不准确,我无法复制粘贴,我正在运行 Windows)
所以,我猜测出现的 rake-0.9.0 文件是罪魁祸首:S,但是我 不知道如何处理它。
提前致谢
When i run:
heroku rake db:migrate,
I get this error message:
rake aborted!
undefined method 'task' for #<'Myapp::Application:0x7f07c011f4f8>
I'm running rake 0.8.7 and have uninstalled rake 0.9.
Also, when i add --trace, these files come up:
/app/.bundle/gems/ruby/1.8/gems/railties-3.0.7/lib/rails/application.rb
/app/.bundle/gems/ruby/1.8/gems/rake-0.9.0/lib/rake/rake_module.rb
/app/.bundle/gems/ruby/1.8/gems/rake-0.9.0/lib/rake/application.rb
(sorry for not being exact, I can't copy n paste, I'm running windows)
So, im guessin the rake-0.9.0 file that comes up is the culprit :S, but i
dunno how to deal with it.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试在 Gemfile 中指定 rake 的确切版本:
当然,如果您有任何依赖于 rake 0.9 的依赖项,这将不起作用。
You could try specifying the exact version of rake in your Gemfile:
This won't work if you have any dependencies relying on rake 0.9, of course.