Class: Chronic::Token

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(word) ⇒ Token

Returns a new instance of Token.



173
174
175
176
# File 'lib/chronic/chronic.rb', line 173

def initialize(word)
  @word = word
  @tags = []
end

Instance Attribute Details

#tagsObject

Returns the value of attribute tags.



171
172
173
# File 'lib/chronic/chronic.rb', line 171

def tags
  @tags
end

#wordObject

Returns the value of attribute word.



171
172
173
# File 'lib/chronic/chronic.rb', line 171

def word
  @word
end

Instance Method Details

#get_tag(tag_class) ⇒ Object

Return the Tag that matches the given class



194
195
196
197
198
# File 'lib/chronic/chronic.rb', line 194

def get_tag(tag_class)
  matches = @tags.select { |m| m.kind_of? tag_class }
  #matches.size < 2 || raise("Multiple identical tags found")
  return matches.first
end

#tag(new_tag) ⇒ Object

Tag this token with the specified tag



179
180
181
# File 'lib/chronic/chronic.rb', line 179

def tag(new_tag)
  @tags << new_tag
end

#tagged?Boolean

Return true if this token has any tags

Returns:

  • (Boolean)


189
190
191
# File 'lib/chronic/chronic.rb', line 189

def tagged?
  @tags.size > 0
end

#to_sObject

Print this Token in a pretty way



201
202
203
# File 'lib/chronic/chronic.rb', line 201

def to_s
  @word << '(' << @tags.join(', ') << ') '
end

#untag(tag_class) ⇒ Object

Remove all tags of the given class



184
185
186
# File 'lib/chronic/chronic.rb', line 184

def untag(tag_class)
  @tags = @tags.select { |m| !m.kind_of? tag_class }
end