Rails 3, shallow routes
In rails 2.x I used shallow routes, but this seems to be missing from rails 3 (at least in the API http://apidock.com/rails/ActionController/Resources/resources ). When I pass this option in rails 3 it doesn't throw any errors, but I'm also not getting all of the routes I expected. Rails 3 routes.rb resources :users, :shallow=>true do resources :recipe do resources :categories do resources :sections do resources :details do end end end end end The routes missing that were generated with the rails 2.x equivalent are (just a sample for the recipe resource): GET new_recipe (I only have new_user