Sha256: 45314420462aa9e00f7172dfee4540eba9caa75bd83adc3823bb4278f2db8041
Contents?: true
Size: 277 Bytes
Versions: 55
Compression:
Stored size: 277 Bytes
Contents
module VmShepherd module DataObject def ==(other_obj) return false unless self.class === other_obj instance_variables.all? do |ivar_name| self.instance_variable_get(ivar_name) == other_obj.instance_variable_get(ivar_name) end end end end
Version data entries
55 entries across 55 versions & 1 rubygems