instiki/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb
Jacques Distler c358389f25 TeX and CSS tweaks.
Sync with latest Instiki Trunk
(Updates Rails to 1.2.2)
2007-02-09 02:04:31 -06:00

40 lines
1 KiB
Ruby

module ActiveSupport #:nodoc:
module CoreExtensions #:nodoc:
module Date #:nodoc:
# Getting dates in different convenient string representations and other objects
module Conversions
DATE_FORMATS = {
:short => "%e %b",
:long => "%B %e, %Y"
}
def self.included(klass) #:nodoc:
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
# To be able to keep Dates and Times interchangeable on conversions
def to_date
self
end
def to_time(form = :local)
if respond_to?(:hour)
::Time.send(form, year, month, day, hour, min, sec)
else
::Time.send(form, year, month, day)
end
end
def xmlschema
to_time.xmlschema
end
end
end
end
end