heroku rake db:迁移,rake 中止!未定义方法“任务”;

发布于 2024-11-13 03:52:47 字数 581 浏览 3 评论 0原文

当我跑步时: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心不设防 2024-11-20 03:52:47

您可以尝试在 Gemfile 中指定 rake 的确切版本:

gem 'rake', '~> 0.8.7'

当然,如果您有任何依赖于 rake 0.9 的依赖项,这将不起作用。

You could try specifying the exact version of rake in your Gemfile:

gem 'rake', '~> 0.8.7'

This won't work if you have any dependencies relying on rake 0.9, of course.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文