Getting dates in different convenient string representations and other objects

Methods
Constants
DATE_FORMATS = { :short => "%e %b", :long => "%B %e, %Y"
Public Instance methods
to_date()

To be able to keep Dates and Times interchangeable on conversions

    # File vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb, line 21
21:         def to_date
22:           self
23:         end
to_formatted_s(format = :default)
    # File vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb, line 16
16:         def to_formatted_s(format = :default)
17:           DATE_FORMATS[format] ? strftime(DATE_FORMATS[format]).strip : to_default_s   
18:         end
to_time(form = :local)
    # File vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb, line 25
25:         def to_time(form = :local)
26:           ::Time.send(form, year, month, day)
27:         end