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