123456789_123456789_123456789_123456789_123456789_

Class: Mail::Address

Class Method Summary

Instance Method Summary

Class Method Details

.wrap(address)

[ GitHub ]

  
# File 'actionmailbox/lib/action_mailbox/mail_ext/address_wrapping.rb', line 5

def self.wrap(address)
  address.is_a?(Mail::Address) ? address : Mail::Address.new(address)
end

Instance Method Details

#==(other_address)

[ GitHub ]

  
# File 'actionmailbox/lib/action_mailbox/mail_ext/address_equality.rb', line 5

def ==(other_address)
  other_address.is_a?(Mail::Address) && to_s == other_address.to_s
end