I have followed the basic instalation ( http://railscasts.com/episodes/67-restful-authentication )
Doing this:
1.) ruby script/generate authenticated user sessions
2.) ruby script/generate authenticated user sessions and rake db:migrate
3.) On the file application_controler.rb I have included
include AuthenticatedSystem
4.) On the file routes.rb I have included
map.signup '/signup', :controller => 'users', :action => 'new'
map.login '/login', :controller => 'session', :action => 'new'
map.logout '/logout', :controller => 'session', :action => 'destroy'
map.activate '/activate/:activation_code', :controller => 'users', :action => 'activate', :activation_code => nil
The problem is that on localhost:3000/ appears the same usual " "Welcome aboard You’re riding Ruby on Rails!" page.
How do I put the login page appearing on localhost:3000 ?