when I run 'rake routes' I get the following error:
rake aborted! undefined method `session=' for ActionController::Base:Class
I believe the new cookie based sessions in environment.rb are causing the error:
config.action_controller.session = { :session_key => '_myapp_session', :secret => 'getyourownsecretkey' }
Isn't this supposed to be the default in rails? When I comment it out the rake works. Is this a bug problem?