Class: Chronic::Pointer

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

Instance Attribute Summary

Attributes inherited from Tag

#type, #width

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Tag

#initialize, #start=

Constructor Details

This class inherits a constructor from Chronic::Tag

Class Method Details

.patternsObject



17
18
19
20
21
22
# File 'lib/chronic/tags/pointer.rb', line 17

def self.patterns
  @@patterns ||= {
    'past' => :past,
    /^future|in$/i => :future,
  }
end

.scan(tokens, options) ⇒ Object

Scan an Array of Token objects and apply any necessary Pointer tags to each token.

tokens - An Array of tokens to scan. options - The Hash of options specified in Chronic::parse.

Returns an Array of tokens.



11
12
13
14
15
# File 'lib/chronic/tags/pointer.rb', line 11

def self.scan(tokens, options)
  tokens.each do |token|
    token.tag scan_for(token, self, patterns, options)
  end
end

Instance Method Details

#to_sObject



24
25
26
# File 'lib/chronic/tags/pointer.rb', line 24

def to_s
  'pointer-' << @type.to_s
end