instance method
autoload_at
Ruby on Rails 7.1.6
Since v3.0.20Signature
autoload_at(path)
No documentation comment.
Parameters
-
pathreq
Source
# File activesupport/lib/active_support/dependencies/autoload.rb, line 63
def autoload_at(path)
@_at_path, old_path = path, @_at_path
yield
ensure
@_at_path = old_path
end
Defined in activesupport/lib/active_support/dependencies/autoload.rb line 63
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Autoload