Flowdock
method

eager_load!

Importance_0
v3.2.8 - Show latest stable - 0 notes - Class: Rails::Engine
eager_load!() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/engine.rb, line 433
    def eager_load!
      railties.all(&:eager_load!)

      config.eager_load_paths.each do |load_path|
        matcher = /\A#{Regexp.escape(load_path)}\/(.*)\.rb\Z/
        Dir.glob("#{load_path}/**/*.rb").sort.each do |file|
          require_dependency file.sub(matcher, '\1')
        end
      end
    end
Register or log in to add new notes.