I'm trying to deploy a simple skeleton Rails 3.0.5 (and Ruby 1.9.2) app to Heroku, but encounter the same error when I open the website and when I try to migrate the db. I created the Heroku app with heroku create --stack bamboo-mri-1.9.2. Everything works locally.
Code: https://github.com/curiousyogurt/SEE App: http://stormy-ice-778.heroku.com/ 1. When going to the website, I get an "Application Error"; in the logs, I get the following error (followed by lots of other information): 2011-03-20T17:25:31-07:00 app[web.1]: /app/cfde9dd3-c394-45fb- a0ef-72a753e83909/home/.bundle/gems/ruby/1.9.1/gems/railties-3.0.5/lib/ rails/railtie/configuration.rb:77:in 'method_missing': undefined method `action' for # (NoMethodError) 2. When doing heroku rake db:migrate, I get the following error: rake aborted! undefined method 'action' for # /app/44666f97- ad08-444e-9f39-9ca7eb8fdc93/home/.bundle/gems/ruby/1.9.1/gems/ railties-3.0.5/lib/rails/railtie/configuration.rb:77:in `method_missing' Here is my Gemfile (non-production parts removed): gem 'rails', '3.0.5' gem 'haml' gem 'devise', :git => 'git://github.com/plataformatec/devise', :branch => 'master' gem 'omniauth' I'm not sure where to go next in trying to track down this problem. Any suggestions would be greatly appreciated. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
