Sha256: 398b72266467eebdf7b03283a94c5e5463d774b51f52a3595853da145abe806a
Contents?: true
Size: 1.16 KB
Versions: 9
Compression:
Stored size: 1.16 KB
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 module TwitterCldr module Localized class LocalizedTime < LocalizedDateTime def to_datetime(date) date_obj = date.is_a?(LocalizedDate) ? date.base_obj : date dt = DateTime.parse("#{date_obj.strftime("%Y-%m-%d")}T#{@base_obj.strftime("%H:%M:%S%z")}") LocalizedDateTime.new(dt, @locale, chain_params) end def to_time(base_time = Time.now) self end def to_date LocalizedDate.new(@base_obj, @locale, chain_params) end def gmtime LocalizedTime.new(@base_obj.gmtime, @locale, chain_params) end def localtime LocalizedTime.new(@base_obj.localtime, @locale, chain_params) end protected def base_in_timezone timezone_info.utc_to_local(@base_obj.utc) end def data_reader_for(type) TwitterCldr::DataReaders::TimeDataReader.new(locale, { :calendar_type => calendar_type, :type => type }) end # def formatter_const # TwitterCldr::Formatters::TimeFormatter # end end end end
Version data entries
9 entries across 9 versions & 1 rubygems