conversions.rb 900 字节
Newer Older
1 2 3 4 5
module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Date #:nodoc:
      # Getting dates in different convenient string representations and other objects
      module Conversions
6 7 8 9 10
        DATE_FORMATS = {
          :short => "%e %b",
          :long  => "%B %e, %Y"
        }
        
D
David Heinemeier Hansson 已提交
11
        def self.append_features(klass) #:nodoc:
12 13 14 15 16 17
          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)
18
          DATE_FORMATS[format] ? strftime(DATE_FORMATS[format]).strip : to_default_s   
19 20 21 22 23 24 25 26 27 28 29 30 31 32
        end

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

        def to_time(form = :local)
          ::Time.send(form, year, month, day)
        end
      end
    end
  end
end