# File lib/whois/answer.rb, line 56 def ==(other) (other.equal?(self)) || # This option should be deprecated (other.is_a?(String) && other == self.to_s) || (other.is_a?(Answer) && other.to_s == self.to_s) end