Sha256: d147176a70b118f150ba3ce0ff9d688e4863661769e4c685a4fde778d453f36b

Contents?: true

Size: 858 Bytes

Versions: 3

Compression:

Stored size: 858 Bytes

Contents

# encoding: UTF-8

# Copyright 2012 Twitter, Inc
# http://www.apache.org/licenses/LICENSE-2.0

module TwitterCldr
  module Localized

    class LocalizedDate < LocalizedDateTime
      def to_datetime(time)
        time_obj = time.is_a?(LocalizedTime) ? time.base_obj : time
        LocalizedDateTime.new(DateTime.parse("#{@base_obj.strftime("%Y-%m-%d")}T#{time_obj.strftime("%H:%M:%S%z")}"), @locale, :calendar_type => @calendar_type)
      end

      def to_time(base = Time.now)
        time = Time.gm(
          @base_obj.year,
          @base_obj.month,
          @base_obj.day,
          base.hour,
          base.min,
          base.sec
        )

        LocalizedTime.new(time, @locale, :calendar_type => @calendar_type)
      end

      protected

      def formatter_const
        TwitterCldr::Formatters::DateFormatter
      end
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
twitter_cldr-2.2.0 lib/twitter_cldr/localized/localized_date.rb
twitter_cldr-2.1.1 lib/twitter_cldr/localized/localized_date.rb
twitter_cldr-2.1.0 lib/twitter_cldr/localized/localized_date.rb