Class: ISO8601::DateTime
- Inherits:
-
Object
- Object
- ISO8601::DateTime
- Extended by:
- Forwardable
- Defined in:
- lib/iso8601/date_time.rb
Overview
A DateTime representation
Instance Attribute Summary collapse
-
#second ⇒ Object
readonly
Returns the value of attribute second.
Instance Method Summary collapse
-
#+(other) ⇒ Object
Addition.
-
#-(other) ⇒ Object
Substraction.
- #==(other) ⇒ Boolean
- #eql?(other) ⇒ Boolean
- #hash ⇒ Fixnum
-
#initialize(date_time) ⇒ DateTime
constructor
A new instance of DateTime.
-
#to_a ⇒ Object
(also: #atoms)
Converts DateTime to an array of atoms.
-
#to_f ⇒ Object
Converts DateTime to a floating point number of seconds since the Epoch.
-
#to_s ⇒ Object
Converts DateTime to a formated string.
Constructor Details
#initialize(date_time) ⇒ DateTime
Returns a new instance of DateTime.
23 24 25 26 27 |
# File 'lib/iso8601/date_time.rb', line 23 def initialize(date_time) @original = date_time @date_time = parse(date_time) @second = @date_time.second + @date_time.second_fraction.to_f.round(1) end |
Instance Attribute Details
#second ⇒ Object (readonly)
Returns the value of attribute second.
19 20 21 |
# File 'lib/iso8601/date_time.rb', line 19 def second @second end |
Instance Method Details
#+(other) ⇒ Object
Addition
33 34 35 36 37 |
# File 'lib/iso8601/date_time.rb', line 33 def +(other) moment = @date_time.to_time.localtime(zone) + other.to_f.round(1) self.class.new(moment.strftime('%Y-%m-%dT%H:%M:%S.%N%:z')) end |
#-(other) ⇒ Object
Substraction
43 44 45 46 47 |
# File 'lib/iso8601/date_time.rb', line 43 def -(other) moment = @date_time.to_time.localtime(zone) - other.to_f.round(1) self.class.new(moment.strftime('%Y-%m-%dT%H:%M:%S.%N%:z')) end |
#==(other) ⇒ Boolean
74 75 76 |
# File 'lib/iso8601/date_time.rb', line 74 def ==(other) (hash == other.hash) end |
#eql?(other) ⇒ Boolean
82 83 84 |
# File 'lib/iso8601/date_time.rb', line 82 def eql?(other) (hash == other.hash) end |
#hash ⇒ Fixnum
88 89 90 |
# File 'lib/iso8601/date_time.rb', line 88 def hash [to_f, self.class].hash end |
#to_a ⇒ Object Also known as: atoms
Converts DateTime to an array of atoms.
59 60 61 |
# File 'lib/iso8601/date_time.rb', line 59 def to_a [year, month, day, hour, minute, second, zone] end |
#to_f ⇒ Object
Converts DateTime to a floating point number of seconds since the Epoch.
66 67 68 |
# File 'lib/iso8601/date_time.rb', line 66 def to_f to_time.to_f end |
#to_s ⇒ Object
Converts DateTime to a formated string
51 52 53 54 55 |
# File 'lib/iso8601/date_time.rb', line 51 def to_s second_format = (second % 1).zero? ? '%02d' : '%04.1f' format("%04d-%02d-%02dT%02d:%02d:#{second_format}%s", *atoms) end |