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