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) ⇒ Array

Scan an Array of Chronic::Tokens and apply any necessary TimeZone tags to each token

Parameters:

  • tokens (Array<Token>)

    Array of tokens to scan

  • options (Hash)

    Options specified in Chronic.parse

Returns:

  • (Array)

    list of tokens



10
11
12
13
14
# File 'lib/chronic/time_zone.rb', line 10

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) ⇒ TimeZone?

Parameters:

Returns:



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

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

Instance Method Details

#to_sObject



26
27
28
# File 'lib/chronic/time_zone.rb', line 26

def to_s
  'timezone'
end