Class: Chronic::Grabber

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

Instance Attribute Summary

Attributes inherited from Tag

#type

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

.scan(tokens, options) ⇒ Object

Scan an Array of Tokens and apply any necessary Grabber tags to each token.

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

Returns an Array of Token objects.



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

def self.scan(tokens, options)
  tokens.each do |token|
    if t = scan_for_all(token) then token.tag(t); next end
  end
end

.scan_for_all(token) ⇒ Object

token - The Token object to scan.

Returns a new Grabber object.



20
21
22
23
24
25
26
27
# File 'lib/chronic/grabber.rb', line 20

def self.scan_for_all(token)
  scan_for token, self,
  {
    /last/ => :last,
    /this/ => :this,
    /next/ => :next
  }
end

Instance Method Details

#to_sObject



29
30
31
# File 'lib/chronic/grabber.rb', line 29

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