I'm not sure if I'm doing something wrong or there is a problem with
namespaces and routes in 3.0.0.beta version. After creating new
application I've generated new controller with
script/rails generate controller Admin::Dashboard show
and added:
namespace :admin do
resource :dashboard
end
to routes.rb, but http://localhost:3000/admin/dashboard resulted in
routing error: No route matches "/admin/dashboard". Maybe I'm wrong
but it looks like problem is in
mapper.rb line 391:
def controller
options[:controller] || plural
end
where pluralized version of controller is returned so even:
rake routes
returns correct list of routes (in singular form) final target has
pluralized version (admin/dashboards) and routing error occurs. Now
I'm wondering whether I've wrongly defined route or controller method
should be:
def controller
options[:controller] || singular
end
resource :session do
get :jumpin, :as => 'session'
post :forgot_password, :as => 'session'
end
I think I have seen this issue. In my code I have had to use the :as option to get the generated helper methods to work. Without the :as option I can still hit the actions, but it is just the _url|path helpers that are not working. I'm swamped and have not made a ticket yet.