instance method
eager_load!
Ruby on Rails 7.1.6
Since v4.0.13Signature
eager_load!()
No documentation comment.
Source
# File activesupport/lib/active_support/dependencies/autoload.rb, line 77
def eager_load!
if @_eagerloaded_constants
@_eagerloaded_constants.each { |const_name| const_get(const_name) }
@_eagerloaded_constants = nil
end
end
Defined in activesupport/lib/active_support/dependencies/autoload.rb line 77
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Autoload