class PropertyList::Uuid

call-seq:

PropertyList::Uuid.new 'F' * 32

Attributes

uuid[R]

Public Class Methods

new(uuid) click to toggle source
# File lib/property-list.rb, line 97
def initialize uuid
  @uuid = uuid
end

Public Instance Methods

==(other) click to toggle source
# File lib/property-list.rb, line 103
def == other
  other.is_a?(Uuid) and @uuid == other.uuid
end