Skip to content

Instantly share code, notes, and snippets.

@carllerche
Created July 31, 2008 04:49
Show Gist options
  • Save carllerche/3405 to your computer and use it in GitHub Desktop.
Save carllerche/3405 to your computer and use it in GitHub Desktop.
Merb::Router.prepare do |r|
r.domain(:admin, "admin.domain.com") do |a|
a.resources :users
end
r.domain(:site, "domain.com") do |s|
s.resources :users
end
r.domain(:something, %r[something\.(com|net)]).default("something.com") do |r|
r.resources :users
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment