static public Method

Routing.with_controllers(names) { || ... }

There's no documentation for this item.

Source Code

# File action_controller/routing.rb, line 292
def with_controllers(names)
  prior_controllers = @possible_controllers
  use_controllers! names
  yield
ensure
  use_controllers! prior_controllers
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.