Class: Tomlrb::LocalTime

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/tomlrb/local_time.rb

Instance Method Summary collapse

Constructor Details

#initialize(hour, min, sec) ⇒ LocalTime

Returns a new instance of LocalTime.

Raises:

  • (ArgumentError)


11
12
13
14
15
# File 'lib/tomlrb/local_time.rb', line 11

def initialize(hour, min, sec)
  @time = Time.utc(0, 1, 1, hour, min, sec)
  raise ArgumentError, "Invalid Local Time: #{hour}-#{min}-#{sec}" unless min.to_i == @time.min && hour.to_i == @time.hour
  @sec = sec
end

Instance Method Details

#==(other) ⇒ Object



32
33
34
35
# File 'lib/tomlrb/local_time.rb', line 32

def ==(other)
  other.is_a?(self.class) &&
    @time == other.to_time(0, 1, 1)
end

#inspectObject



37
38
39
# File 'lib/tomlrb/local_time.rb', line 37

def inspect
  "#<#{self.class}: #{self}>"
end

#to_sObject



26
27
28
29
30
# File 'lib/tomlrb/local_time.rb', line 26

def to_s
  frac = (@sec - sec)
  frac_str = frac.zero? ? '' : frac.to_s[1..-1]
  @time.strftime('%T') << frac_str
end

#to_time(year, month, day, offset = '-00:00') ⇒ Time

Returns the time of the date specified by params.

Parameters:

Returns:

  • (Time)

    the time of the date specified by params



22
23
24
# File 'lib/tomlrb/local_time.rb', line 22

def to_time(year, month, day, offset = '-00:00')
  Time.new(year, month, day, hour, min, @sec, offset)
end