module ActionDispatch::Routing::Mapper::Scoping

def controller(controller, options={})

end
match "bacon", :action => "bacon"
controller "food" do
Example:

Scopes routes to a specific controller
def controller(controller, options={})
  options[:controller] = controller
  scope(options) { yield }
end