aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-12-01 23:01:21 -0600
committerJoshua Peek <josh@joshpeek.com>2009-12-01 23:01:21 -0600
commit5d9af09563897bd36b4baaf9bb366cf100be90a9 (patch)
treeaf6e04e4475b6a8cfb123867b5cb80723572f3a5 /actionmailer/lib
parent97be8537ebf33aa0c47fe1c6164e94c24acc3c19 (diff)
downloadrails-5d9af09563897bd36b4baaf9bb366cf100be90a9.tar.gz
rails-5d9af09563897bd36b4baaf9bb366cf100be90a9.tar.bz2
rails-5d9af09563897bd36b4baaf9bb366cf100be90a9.zip
Silence known internal AM deprecation calls
Diffstat (limited to 'actionmailer/lib')
-rw-r--r--actionmailer/lib/action_mailer/base.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index bef9bb8e79..7b952c462f 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -515,11 +515,15 @@ module ActionMailer #:nodoc:
@headers ||= {}
@sent_on ||= Time.now
- super # Run deprecation hooks
+ ActiveSupport::Deprecation.silence do
+ super # Run deprecation hooks
+ end
end
def create_parts
- super # Run deprecation hooks
+ ActiveSupport::Deprecation.silence do
+ super # Run deprecation hooks
+ end
if String === response_body
@parts.unshift Part.new(
@@ -592,7 +596,7 @@ module ActionMailer #:nodoc:
headers.each { |k, v| m[k] = v }
real_content_type, ctype_attrs = parse_content_type
-
+
if @parts.empty?
m.set_content_type(real_content_type, nil, ctype_attrs)
m.body = normalize_new_lines(body)