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