instance method
autoload_at
Ruby on Rails 3.2.22.5
Since v3.0.20Signature
autoload_at(path)
No documentation comment.
Parameters
-
pathreq
Source
# 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
Defined in activesupport/lib/active_support/dependencies/autoload.rb line 28
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Autoload