Sha256: 56377de8c0495b377f9b97b99958f72bbca82f61eebe9ac77cfccc3c6a08cd9c

Contents?: true

Size: 600 Bytes

Versions: 2

Compression:

Stored size: 600 Bytes

Contents

require 't/cli'
require 'time'

module T
  class << self

    # Convert time to local time by applying the `utc_offset` setting.
    def local_time(time)
      utc_offset ? (time.dup.utc + utc_offset) : time.localtime
    end

    # UTC offset in seconds to apply time instances before displaying.
    # If not set, time instances are displayed in default local time.
    attr_reader :utc_offset

    def utc_offset=(offset)
      @utc_offset = case offset
      when String
        Time.zone_offset(offset)
      when NilClass
        nil
      else
        offset.to_i
      end
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
t-2.0.1 lib/t.rb
t-2.0.0 lib/t.rb