Skip to content

Instantly share code, notes, and snippets.

@carllerche
Created August 25, 2008 20:09
Show Gist options
  • Save carllerche/7144 to your computer and use it in GitHub Desktop.
Save carllerche/7144 to your computer and use it in GitHub Desktop.
Merb::Router.prepare do
namespace :admin do
match("/foo").to(:controller => "foos") # => :controller => "admin/foos"
match("/bar").to(:controller => "/bars") # => :controller => "bars"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment