Object
# File lib/action_mailer/tmail_compat.rb, line 27 27: def original_filename 28: ActiveSupport::Deprecation.warn('Message#original_filename is deprecated, ' << 29: 'please call Message#filename', caller[0,2]) 30: filename 31: end
# File lib/action_mailer/tmail_compat.rb, line 4 4: def set_content_type(*args) 5: ActiveSupport::Deprecation.warn('Message#set_content_type is deprecated, please just call ' << 6: 'Message#content_type with the same arguments', caller[0,2]) 7: content_type(*args) 8: end
# File lib/action_mailer/tmail_compat.rb, line 11 11: def transfer_encoding(value = nil) 12: if value 13: ActiveSupport::Deprecation.warn('Message#transfer_encoding is deprecated, please call ' << 14: 'Message#content_transfer_encoding with the same arguments', caller[0,2]) 15: content_transfer_encoding(value) 16: else 17: old_transfer_encoding 18: end 19: end
# File lib/action_mailer/tmail_compat.rb, line 21 21: def transfer_encoding=(value) 22: ActiveSupport::Deprecation.warn('Message#transfer_encoding= is deprecated, please call ' << 23: 'Message#content_transfer_encoding= with the same arguments', caller[0,2]) 24: self.content_transfer_encoding = value 25: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.