Method: Mustermann::Expander#==

Defined in:
lib/mustermann/expander.rb

#==(other) ⇒ Object

See Also:

  • Object#==


158
159
160
161
# File 'lib/mustermann/expander.rb', line 158

def ==(other)
  return false unless other.class == self.class
  other.patterns == patterns and other.additional_values == additional_values
end