aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_mailbox/mail_ext/address_equality.rb
blob: 76675365dd327b8da0dbbd547b03445cb691d98f (plain) (blame)
1
2
3
4
5
class Mail::Address
  def ==(other_address)
    other_address.is_a?(Mail::Address) && to_s == other_address.to_s
  end
end