Rails: Routing without plurals gives strange helpers
I am getting a strange named helpers with this setup: In config/routes.rb I have: Qtl::Application.routes.draw do resources :qtl_table do collection do get 'search' end end ... end rake routes outputs this: search_qtl_table_index GET /qtl_table/search(.:format) {:action=>"search", :controller=>"qtl_table"} qtl_table_index GET /qtl_table(.:format) {:action=>"index", :controller=>"qtl_table"} POST /qtl_table(.:format) {:action=>"create", :controller=>"qtl_table"} new_qtl_table GET /qtl_table/new(.:format) {:action=>"new", :controller=>"qtl_table"} edit_qtl_table GET /qtl_table/:id/edit(.:format)