aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-12-22 17:27:37 -0600
committerJoshua Peek <josh@joshpeek.com>2009-12-22 17:27:37 -0600
commitace20bd25e3818b7f29c222643dd445c48b36425 (patch)
treed8bdc5e685f6d4e56e7f6c6e1f0a27fdad8b20ed /actionmailer
parentb1aee9f4eebdae4fad38572359649c097c731b77 (diff)
downloadrails-ace20bd25e3818b7f29c222643dd445c48b36425.tar.gz
rails-ace20bd25e3818b7f29c222643dd445c48b36425.tar.bz2
rails-ace20bd25e3818b7f29c222643dd445c48b36425.zip
Flip deferrable autoload convention
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/lib/action_mailer.rb31
1 files changed, 18 insertions, 13 deletions
diff --git a/actionmailer/lib/action_mailer.rb b/actionmailer/lib/action_mailer.rb
index f439eb175c..6539451bea 100644
--- a/actionmailer/lib/action_mailer.rb
+++ b/actionmailer/lib/action_mailer.rb
@@ -30,29 +30,34 @@ require 'action_view'
module ActionMailer
extend ::ActiveSupport::Autoload
- autoload :AdvAttrAccessor
- autoload :DeprecatedBody
- autoload :Base
- autoload :DeliveryMethod
- autoload :MailHelper
- autoload :Part
- autoload :PartContainer
- autoload :Quoting
- autoload :TestHelper
- autoload :Utils
+ eager_autoload do
+ autoload :AdvAttrAccessor
+ autoload :DeprecatedBody
+ autoload :Base
+ autoload :DeliveryMethod
+ autoload :MailHelper
+ autoload :Part
+ autoload :PartContainer
+ autoload :Quoting
+ autoload :TestHelper
+ autoload :Utils
+ end
end
module Text
extend ActiveSupport::Autoload
- autoload :Format, 'action_mailer/vendor/text_format'
+ eager_autoload do
+ autoload :Format, 'action_mailer/vendor/text_format'
+ end
end
module Net
extend ActiveSupport::Autoload
- autoload :SMTP
+ eager_autoload do
+ autoload :SMTP
+ end
end
-
require 'action_mailer/vendor/tmail'