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