In Rails 3.1 app and updated Devise 1.4.7, when I visit http://localhost:3000/users/sign_up (as indicated in rake routes), I get "ArgumentError in Devise/registrations#new" extracted source is line 3:
<%= form_for(resource_name, resource, :url => registration_path(resource_name)) do |f| %>.
What is the solution to this? Thank you in advance.
Deals::Application.routes.draw do
devise_for :users
root :to => "home#index"
end