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