Method: Wagon::Address#==
- Defined in:
- lib/wagon/address.rb
#==(other) ⇒ Object
32 33 34 35 36 37 38 |
# File 'lib/wagon/address.rb', line 32 def ==(other) street == other.street && city == other.city && state == other.state && zip == other.zip && country == other.country end |