class PublicSuffix::Rule::Base

def ==(other)

Returns:
  • (Boolean) - true if this rule and other are instances of the same class

Parameters:
  • other (PublicSuffix::Rule::*) -- The rule to compare
def ==(other)
  equal?(other) || (self.class == other.class && value == other.value)
end