Sha256: 7354f97f16241d10f116a487fc40ed8c32dfd7ae8c4ec10e935dedd045f4d8d9

Contents?: true

Size: 754 Bytes

Versions: 2

Compression:

Stored size: 754 Bytes

Contents

require 'active_support/string_inquirer'
require 't/cli'
require 'time'

module T
  class << self

    attr_reader :env

    def env=(environment)
      @env = ActiveSupport::StringInquirer.new(environment)
    end

    # Convert time to local time by applying the `utc_offset` setting.
    def local_time(time)
      utc_offset ? (time.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-0.9.9 lib/t.rb
t-0.9.8 lib/t.rb