instance method
with_scope_level
Ruby on Rails 4.2.9
Since v3.0.20Signature
with_scope_level(kind)
No documentation comment.
Parameters
-
kindreq
Source
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 1665
def with_scope_level(kind)
@scope = @scope.new_level(kind)
yield
ensure
@scope = @scope.parent
end
Defined in actionpack/lib/action_dispatch/routing/mapper.rb line 1665
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Routing::Mapper::Resources