Class: Chronic::TimeZone
Instance Attribute Summary
Attributes inherited from Tag
Class Method Summary collapse
-
.scan(tokens, options) ⇒ Array
Scan an Array of Tokens and apply any necessary TimeZone tags to each token.
- .scan_for_all(token) ⇒ TimeZone?
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 Chronic::Tokens and apply any necessary TimeZone tags to each token
10 11 12 13 14 |
# File 'lib/chronic/time_zone.rb', line 10 def self.scan(tokens, ) tokens.each do |token| if t = scan_for_all(token) then token.tag(t); next end end end |
.scan_for_all(token) ⇒ TimeZone?
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|UTC/i => :tz, /(tzminus)?\d{2}:?\d{2}/ => :tz } end |
Instance Method Details
#to_s ⇒ Object
26 27 28 |
# File 'lib/chronic/time_zone.rb', line 26 def to_s 'timezone' end |