Class: Chronic::Tag

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

Overview

Tokens are tagged with subclassed instances of this class when they match specific criteria

Direct Known Subclasses

Grabber, Ordinal, Pointer, Repeater, Scalar, Separator, TimeZone

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type) ⇒ Tag

Returns a new instance of Tag.



321
322
323
# File 'lib/chronic/chronic.rb', line 321

def initialize(type)
  @type = type
end

Instance Attribute Details

#typeObject

:nodoc:



319
320
321
# File 'lib/chronic/chronic.rb', line 319

def type
  @type
end

Instance Method Details

#start=(s) ⇒ Object



325
326
327
# File 'lib/chronic/chronic.rb', line 325

def start=(s)
  @now = s
end