I\'m trying to get Custom Routes working in my Rails application (Ruby 1.9.2 with Rails 3).
This is my config/routes.rb file
match \'/dashboard\' =&g
The following worked for me:
devise_for :users do get "/login" => "devise/sessions#new" get "/register" => "devise/registrations#new" end