aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Valim and Mikel Lindsaar <raasdnil@gmail.com>2010-01-22 12:49:13 +1100
committerJosé Valim and Mikel Lindsaar <raasdnil@gmail.com>2010-01-22 12:49:13 +1100
commit77986f6bdb18414d730fa1ec686365dff26bb4fe (patch)
tree0d7c4e147cbe2740c9a33aa29ebc03380cacc1d7
parent12c001fec449864db64eca9ba3a477a7da30b2ba (diff)
downloadrails-77986f6bdb18414d730fa1ec686365dff26bb4fe.tar.gz
rails-77986f6bdb18414d730fa1ec686365dff26bb4fe.tar.bz2
rails-77986f6bdb18414d730fa1ec686365dff26bb4fe.zip
Added use of AS::Notifications for tmail_compat.rb
-rw-r--r--actionmailer/lib/action_mailer/tmail_compat.rb9
-rw-r--r--actionmailer/test/tmail_compat_test.rb2
2 files changed, 6 insertions, 5 deletions
diff --git a/actionmailer/lib/action_mailer/tmail_compat.rb b/actionmailer/lib/action_mailer/tmail_compat.rb
index 94f21c7cf3..da13aac677 100644
--- a/actionmailer/lib/action_mailer/tmail_compat.rb
+++ b/actionmailer/lib/action_mailer/tmail_compat.rb
@@ -2,14 +2,16 @@ module Mail
class Message
def set_content_type(*args)
- STDERR.puts("Message#set_content_type is deprecated, please just call Message#content_type with the same arguments.\n#{caller}")
+ ActiveSupport::Deprecation.warn('Message#set_content_type is deprecated, please just call ' <<
+ 'Message#content_type with the same arguments.', caller[0,10])
content_type(*args)
end
alias :old_transfer_encoding :transfer_encoding
def transfer_encoding(value = nil)
if value
- STDERR.puts("Message#transfer_encoding is deprecated, please call Message#content_transfer_encoding with the same arguments.\n#{caller}")
+ ActiveSupport::Deprecation.warn('Message#transfer_encoding is deprecated, please call ' <<
+ 'Message#content_transfer_encoding with the same arguments.', caller[0,10])
content_transfer_encoding(value)
else
old_transfer_encoding
@@ -17,7 +19,8 @@ module Mail
end
def original_filename
- STDERR.puts("Message#original_filename is deprecated, please call Message#filename.\n#{caller}")
+ ActiveSupport::Deprecation.warn('Message#original_filename is deprecated, ' <<
+ 'please call Message#filename.', caller[0,10])
filename
end
diff --git a/actionmailer/test/tmail_compat_test.rb b/actionmailer/test/tmail_compat_test.rb
index a1ca6a7243..b7fcb3cfea 100644
--- a/actionmailer/test/tmail_compat_test.rb
+++ b/actionmailer/test/tmail_compat_test.rb
@@ -4,7 +4,6 @@ class TmailCompatTest < Test::Unit::TestCase
def test_set_content_type_raises_deprecation_warning
mail = Mail.new
- STDERR.expects(:puts) # Deprecation warning
assert_nothing_raised do
mail.set_content_type "text/plain"
end
@@ -13,7 +12,6 @@ class TmailCompatTest < Test::Unit::TestCase
def test_transfer_encoding_raises_deprecation_warning
mail = Mail.new
- STDERR.expects(:puts) # Deprecation warning
assert_nothing_raised do
mail.transfer_encoding "base64"
end