method

eager_load!

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: ActionMailer
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 actionmailer/lib/action_mailer.rb, line 61
  def self.eager_load!
    super

    require "mail"
    Mail.eager_autoload!

    Base.descendants.each do |mailer|
      mailer.eager_load! unless mailer.abstract?
    end
  end
Register or log in to add new notes.