class Handle

Attributes

contents[RW]

Public Class Methods

new(contents) click to toggle source
# File lib/handle.rb, line 5
def initialize(contents)
  @contents = contents
end

Public Instance Methods

==(other) click to toggle source
# File lib/handle.rb, line 9
def ==(other)
  return nil unless other.class == self.class
  return other.contents == self.contents
end