我得到的错误与这些问题中的错误类似,只是我的错误发生在Heroku:上
2011-05-30T09:03:29+00:00 heroku[worker.1]: Starting process with command: `rake jobs:work`
2011-05-30T09:03:30+00:00 app[worker.1]: (in /app)
2011-05-30T09:03:30+00:00 heroku[worker.1]: State changed from starting to up
2011-05-30T09:03:33+00:00 app[worker.1]: rake aborted!
2011-05-30T09:03:33+00:00 app[worker.1]: uninitialized constant Rake::DSL
2011-05-30T09:03:33+00:00 app[worker.1]: /app/.bundle/gems/ruby/1.9.1/gems/rake-0.9.0/lib/rake/tasklib.rb:8:in `<class:TaskLib>'
这些问题的答案似乎是指定gem 'rake', '0.8.7'
,因为0.9版本会导致问题。
当我试图将gem 'rake', '0.8.7'
添加到我的gemfile并推送到Heroku时,我得到了这个错误:
Unresolved dependencies detected; Installing...
You have modified your Gemfile in development but did not check
the resulting snapshot (Gemfile.lock) into version control
You have added to the Gemfile:
* rake (= 0.8.7)
FAILED: http://devcenter.heroku.com/articles/bundler
! Heroku push rejected, failed to install gems via Bundler
error: hooks/pre-receive exited with error code 1
To git@heroku.com:my_app.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:my_app.git'
我的gemfile通常在Heroku上运行良好。我该怎么办?
将其放入上面的Rakefile中需要"rake":
require 'rake/dsl_definition'
任何时候更改您的Gemfile,都需要bundle install
来更新您的锁定文件(Gemfile.lock)。您在推送上遇到的错误并不是特定于更改rake的版本。
bundle install
git commit -a -m "update lockfile"
git push heroku master
注意您收到的错误信息:
您在开发中修改了Gemfile,但没有将生成的快照(Gemfile.lock)检查到版本控制中
1) 更改Gemfile以指定Rake 0.8.7
#in Gemfile
gem "rake", "0.8.7"
2) 去掉我之前添加到Rakefile的一个基于Stack的破解;溢出问题RubyonRails和Rake问题:未初始化的常量Rake::DSL:
所以,我的Rakefile现在又回到了我的应用程序的标准Rakefile:
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
require 'rake'
MyApp::Application.load_tasks
3) 更改Heroku以在Ruby 1.9.2:中运行我的应用程序
heroku stack:migrate bamboo-mri-1.9.2 --app myapp
git push heroku master
现在看起来很好——计划的cron任务无论如何都在运行。
编辑:它确实运行得很好,有一次,然后下次我推东西时又爆炸了!阿。我想我现在已经修复了它,添加了delayed_job
gem,基于对话不知道如何构建任务作业:工作。
安装delayed_job
似乎不是一个很好的解决方案,但它已经奏效了,我想我可能会想在某个时候使用它,尤其是在Heroku的每小时一次的cron作业中(这还不够频繁——有些事情我可能想每五分钟运行一次)。在我安装了delayed_job
gem之后,我必须为它进行设置,否则Heroku会抱怨缺少delayed_jobs
表:
#add to gemfile
gem 'delayed_job'
#at command line
bundle install
rails g delayed_job
rake db:migrate
git add -A
git commit -a -m "added delayed_job gem"
git push
heroku rake db:migrate --app myapp
heroku restart --app myapp
我有一个Rails 3.0.11应用程序,它在Gemfile中指定了rake 0.8.7版本,以解决0.9.2版本的rake::DSL问题。
在我将应用程序转换为Rails 3.2.0(Heroku Cedar堆栈)后,我遇到了工人(rake任务)崩溃的问题。我将"gem‘rake’,‘0.8.7’"更改为"gem’rake",它捆绑了rake版本0.9.2.2。工人停止了对新版本的崩溃。
您的问题是由未删除Gemfile.lock
文件引起的,并且不是Heroku特有的。删除Gemfile.lock
应该可以解决这个问题,但会直接导致另一个问题:
To git@heroku.com:tailored-landing-pages.git
* [new branch] master -> master
manfred@painstation2:~/Desktop/projects/ror/ta/tlp307$ heroku rake db:migrate
rake aborted!
ninitialized constant Rake::DSL
/app/Rakefile:13:in `<class:Application>'
/app/Rakefile:12:in `<module:Tlp307>'
/app/Rakefile:11:in `<top (required)>'
/usr/ruby1.9.2/lib/ruby/1.9.1/rake.rb:2373:in `load'
/usr/ruby1.9.2/lib/ruby/1.9.1/rake.rb:2373:in `raw_load_rakefile'
/usr/ruby1.9.2/lib/ruby/1.9.1/rake.rb:2007:in `block in load_rakefile'
/usr/ruby1.9.2/lib/ruby/1.9.1/rake.rb:2058:in `standard_exception_handling'
/usr/ruby1.9.2/lib/ruby/1.9.1/rake.rb:2006:in `load_rakefile'
/usr/ruby1.9.2/lib/ruby/1.9.1/rake.rb:1991:in `run'
/usr/ruby1.9.2/bin/rake:31:in `<main>'
不幸的是,我还没有找到这个问题的解决方案,因为将Rake降级到0.8.7在这里似乎不起作用。如果其他人有答案,我将不胜感激。