I'm trying to get my Rails3 application running on Heroku,the first time I've tried to use Heroku. The app uses the ActiveScaffold plugin for Rails3. It works in production mode locally, and Heroku takes the app OK, but when I browse to the app I get a message "App crashed". The logs show
/routes.rb:34: undefined local variable or method `as_routes' for <ActionDispatch::Routing::Mapper:0x2b23d0ca4a08> (NameError)
as_routes
is the ActiveScaffold-generated route, such as
resources :contacts do as_routes end
It looks at first glance as if Heroku is not recognizing the ActiveScaffold methods. Any ideas?
does it support rails3?
but Heroku doesn't do anything special to your app in this instance though - strange how it works locally though...?