Class: Ruleby::GeneratedTag

Inherits:
Object
  • Object
show all
Defined in:
lib/rulebook.rb

Constant Summary collapse

@@tag_counter =

this counter is incremented for each UniqueTag created, and is appended to the end of the unique_seed in order to create a string that is unique for each instance of this class.

0
@@unique_seed =

every generated tag will be prefixed with this string

'unique_seed'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeGeneratedTag

Returns a new instance of GeneratedTag.



100
101
102
103
# File 'lib/rulebook.rb', line 100

def initialize()
  @@tag_counter += 1
  @tag = @@unique_seed + @@tag_counter.to_s
end

Instance Attribute Details

#tagObject (readonly)

Returns the value of attribute tag.



107
108
109
# File 'lib/rulebook.rb', line 107

def tag
  @tag
end

#tag_counterObject (readonly)

Returns the value of attribute tag_counter.



105
106
107
# File 'lib/rulebook.rb', line 105

def tag_counter
  @tag_counter
end

#unique_seedObject (readonly)

Returns the value of attribute unique_seed.



106
107
108
# File 'lib/rulebook.rb', line 106

def unique_seed
  @unique_seed
end

Instance Method Details

#==(ut) ⇒ Object



109
110
111
# File 'lib/rulebook.rb', line 109

def ==(ut)
  return ut && ut.kind_of?(GeneratedTag) && @tag == ut.tag
end

#to_sObject



113
114
115
# File 'lib/rulebook.rb', line 113

def to_s
  return @tag.to_s
end