Method: ActiveData::Model::Associations#==
- Defined in:
- lib/active_data/model/associations.rb
#==(other) ⇒ Object Also known as: eql?
86 87 88 89 90 |
# File 'lib/active_data/model/associations.rb', line 86 def == other super && association_names.all? do |association| public_send(association) == other.public_send(association) end end |