Skip to content

Instantly share code, notes, and snippets.

@carllerche
Created October 11, 2008 19:16
Show Gist options
  • Save carllerche/16310 to your computer and use it in GitHub Desktop.
Save carllerche/16310 to your computer and use it in GitHub Desktop.
Merb::Router.prepare do
# I don't like the name :condition for this
resources :users, :condition => /.*/ do
resources :comments
end
# match("/users/:id", :id => /.*/)
# match("/users/:user_id/comments", :user_id => /.*/)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment