method

eager_load!

eager_load!()
public

No documentation available.

# File activesupport/lib/active_support/dependencies/autoload.rb, line 65
    def eager_load!
      if @_eagerloaded_constants
        @_eagerloaded_constants.each { |const_name| const_get(const_name) }
        @_eagerloaded_constants = nil
      end
    end