aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/time/conversions.rb
blob: fadfb6b0df8577161b8896c2b385882f1d25db29 (plain) (tree)
1
2
3
4
5
6
7

              




                                                                                      





                                        






                                                           
                                                                                              


                   
                                      









                                                                           
require 'date'

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Time #:nodoc:
      # Getting times in different convenient string representations and other objects
      module Conversions
        DATE_FORMATS = {
          :db    => "%Y-%m-%d %H:%M:%S",
          :short => "%e %b %H:%M",
          :long  => "%B %e, %Y %H:%M"
        }

        def self.append_features(klass)
          super
          klass.send(:alias_method, :to_default_s, :to_s)
          klass.send(:alias_method, :to_s, :to_formatted_s)
        end
        
        def to_formatted_s(format = :default)
          DATE_FORMATS[format] ? strftime(DATE_FORMATS[format]).strip : to_default_s          
        end

        def to_date
          ::Date.new(year, month, day)
        end

        # To be able to keep Dates and Times interchangeable on conversions
        def to_time
          self
        end
      end
    end
  end
end