2011-10-17 15 views
2

私はconfig.ruファイルに次のようなエラーがあり、その下にHerokuがクラッシュします。HerokuでResqueを実行するためにconfig.ruを設定するには?

require ::File.expand_path('../config/environment', __FILE__) 
run Picasa::Application 

require 'resque/server' 
run Rack::URLMap.new \ 
    "/" => Picasa::Application, 
    "/resque" => Resque::Server.new 

エラー:

2011-10-17T13:54:01+00:00 heroku[web.1]: Starting process with command `thin -p 30071 -e production -R /home/heroku_rack/heroku.ru start` 
2011-10-17T13:54:06+00:00 app[web.1]: /app/.bundle/gems/ruby/1.8/gems/railties-3.0.9/lib/rails/application.rb:168:in `call': undefined method `reverse_merge!' for #<Rack::URLMap:0x7fd215e4f720> (NoMethodError) 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/railties-3.0.9/lib/rails/application.rb:77:in `send' 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/railties-3.0.9/lib/rails/application.rb:77:in `method_missing' 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:73:in `to_app' 
2011-10-17T13:54:06+00:00 app[web.1]: from /home/heroku_rack/heroku.ru:23:in `inject' 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:73:in `each' 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:73:in `inject' 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:73:in `to_app' 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:63:in `map' 
2011-10-17T13:54:06+00:00 app[web.1]: from /home/heroku_rack/heroku.ru:18 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:46:in `instance_eval' 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:46:in `initialize' 
2011-10-17T13:54:06+00:00 app[web.1]: from /home/heroku_rack/heroku.ru:11:in `new' 
2011-10-17T13:54:06+00:00 app[web.1]: from /home/heroku_rack/heroku.ru:11 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:46:in `instance_eval' 
2011-10-17T13:54:06+00:00 app[web.1]: from /app/.bundle/gems/ruby/1.8/gems/rack-1.2.3/lib/rack/builder.rb:46:in `initialize' 
2011-10-17T13:54:06+00:00 app[web.1]: from /home/heroku_rack/heroku.ru:1:in `new' 
2011-10-17T13:54:06+00:00 app[web.1]: from /home/heroku_rack/heroku.ru:1 
2011-10-17T13:54:06+00:00 heroku[web.1]: Process exited 
2011-10-17T13:54:08+00:00 heroku[web.1]: State changed from starting to crashed 

答えて

4

あなたはあなたが必要とするすべてはあなたのroutes.rbをファイルに

mount Resque::Server.new, :at => "/resque" 

であり、その場合にはRailsの3.0.9を実行しているように見えます。

+0

こんにちは。これを私のルートファイルに追加し、最後の4行を 'config.ru'から削除して、同じエラーが発生しました。 – Simpleton

+0

ローカルで動作しますか?この問題は、Herokuに配置しなくてもローカルで発生します。 –

+0

routes.rbファイルにあなたの提案があり、設定ファイルに固有のものはありません。サーバーはローカルで起動します。 – Simpleton

関連する問題