Object
# File lib/handle.rb, line 5 def initialize(contents) @contents = contents end
# File lib/handle.rb, line 9 def ==(other) return nil unless other.class == self.class return other.contents == self.contents end