==(other)
click to toggle source
eql?(other)
click to toggle source
def eql? other
super && self.name == other.name
end
hash()
click to toggle source
def hash
super ^ @name.hash
end
initialize_copy(other)
click to toggle source
def initialize_copy other
super
@name = other.name.clone
end