Class: Chronic::Pointer
Instance Attribute Summary
Attributes inherited from Tag
Class Method Summary collapse
-
.scan(tokens, options) ⇒ Array
Scan an Array of Tokens and apply any necessary Pointer tags to each token.
- .scan_for_all(token) ⇒ Pointer?
Instance Method Summary collapse
Methods inherited from Tag
Constructor Details
This class inherits a constructor from Chronic::Tag
Class Method Details
.scan(tokens, options) ⇒ Array
Scan an Array of Tokens and apply any necessary Pointer tags to each token
10 11 12 13 14 |
# File 'lib/chronic/pointer.rb', line 10 def self.scan(tokens, ) tokens.each do |token| if t = scan_for_all(token) then token.tag(t) end end end |
.scan_for_all(token) ⇒ Pointer?
18 19 20 21 22 23 24 |
# File 'lib/chronic/pointer.rb', line 18 def self.scan_for_all(token) scan_for token, self, { /\bpast\b/ => :past, /\b(?:future|in)\b/ => :future, } end |
Instance Method Details
#to_s ⇒ Object
26 27 28 |
# File 'lib/chronic/pointer.rb', line 26 def to_s 'pointer-' << @type.to_s end |