Actually, this doesn't work. The route looks correct, but it depends
upon app/models/user.rb being present.
It doesn't seem possible to specify a namespaced model with the devise
route helper. I can fallback to creating routes by hand, but I'm
looking through the Devise code (in mapping.rb, particularly) and it
seems it should be possible. Using the namespace route above, the
mapping does have all the necessary information to work out that the
class name is Inkling::User ....
/Users/nicholas/.rvm/gems/ruby-1.8.7-p299/gems/devise-1.1.1/lib/
devise.rb:200
mapping = Devise::Mapping.new(resource, options)
(rdb:1) p options
{:module=>"inkling", :controllers=>{:sessions=>"inkling/
sessions"}, :as=>"inkling", :path_names=>{:edit=>"edit", :new=>"new"}, :path_prefix=>"/
inkling"}
(rdb:1) p resource
:users
Is this something you'd like to support? It's probably as simple as
building the class_name with the module.
Cheers,
Nicholas