module ActionDispatch::Routing::UrlFor

def _with_routes(routes) # :doc:

:doc:
def _with_routes(routes) # :doc:
  old_routes, @_routes = @_routes, routes
  yield
ensure
  @_routes = old_routes
end