In Rails, is it possible to namespace models in modules and still get correct behavior from url_for?
url_for
For instance, here, url_for works as e
Use
namespace "blah" do resources :thing end
Then routes will be named appropiately.
rake routes
To view all routes