method
autoload_at
v5.2.3 -
Show latest stable
- Class:
ActiveSupport::Autoload
autoload_at(path)public
No documentation available.
# File activesupport/lib/active_support/dependencies/autoload.rb, line 57
def autoload_at(path)
@_at_path, old_path = path, @_at_path
yield
ensure
@_at_path = old_path
end