Class: Chronic::TimeZone

Inherits:
Tag
  • Object
show all
Defined in:
lib/chronic/time_zone.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 Token objects and apply any necessary TimeZone 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/time_zone.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 we want to scan.

Returns a new Pointer object.



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

def self.scan_for_all(token)
  scan_for token, self,
  {
    /[PMCE][DS]T|UTC/i => :tz,
    /(tzminus)?\d{2}:?\d{2}/ => :tz
  }
end

Instance Method Details

#to_sObject



28
29
30
# File 'lib/chronic/time_zone.rb', line 28

def to_s
  'timezone'
end