use the sof attributes for equality

This commit is contained in:
Torsten Ruger 2014-08-19 22:40:28 +03:00
parent 28b4344ef9
commit 4b17a1e58f

View File

@ -7,9 +7,17 @@ module Virtual
class Object
def == other
return false unless other.class == self.class
attributes.each do |a|
left = send(a)
right = other.send(a)
Sof::Util.attributes(self).each do |a|
begin
left = send(a)
rescue NoMethodError
next # not using instance variables that are not defined as attr_readers for equality
end
begin
right = other.send(a)
rescue NoMethodError
return false
end
return false unless left.class == right.class
return false unless left == right
end