instance method
eager_autoload
Ruby on Rails 3.1.12
Since v3.0.20Signature
eager_autoload()
No documentation comment.
Source
# File activesupport/lib/active_support/dependencies/autoload.rb, line 35
def eager_autoload
old_eager, @@eager_autoload = @@eager_autoload, true
yield
ensure
@@eager_autoload = old_eager
end
Defined in activesupport/lib/active_support/dependencies/autoload.rb line 35
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Autoload