Skip to content

Instantly share code, notes, and snippets.

@danielvlopes
Created December 23, 2008 13:24
Show Gist options
  • Save danielvlopes/39329 to your computer and use it in GitHub Desktop.
Save danielvlopes/39329 to your computer and use it in GitHub Desktop.
map.resources :accounts do |accounts|
accounts.resources :people, :name_prefix => "account_"
end
map.resources :people do |people|
people.resources :notes, :name_prefix => "person_"
end
map.resources :notes do |notes|
notes.resources :comments, :name_prefix => "note_"
end
map.resources :comments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment