Skip to content

Instantly share code, notes, and snippets.

@speedmax
Created May 3, 2009 04:48
Show Gist options
  • Save speedmax/105841 to your computer and use it in GitHub Desktop.
Save speedmax/105841 to your computer and use it in GitHub Desktop.
# Nested routes works on ruby 1.8.6, and failed on ruby 1.9
#
# app/controllers/admin/dashboard_controller.rb
# app/controllers/admin/photos_controller.rb
#
map.namespace :admin, :name_prefix => '' do |admin|
admin.resource :dashboard
admin.resource :photos
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment