I had this app in rails 2.3 and had this route
map.resources :oker_training, :as => ‘oker-training’
it did everything correctly, and displayed the url as
“/oker-training”.
To get the same effect in rails 3, I had to do this
resources ‘oker-training’, :as => :oker_training, :controller =>
:oker_training.
My routes file is now 30% larger than before Is there a cleaner way
to write that?
Jeremy
(had to call it “oker” because it thought I was spamming. lol)