From 62ac3279e87c1c9a9bf669d1cc98b660d06b7667 Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Wed, 28 Feb 2007 00:49:01 +0000 Subject: Add missing files git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6264 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../core_ext/date_time/conversions.rb | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 activesupport/lib/active_support/core_ext/date_time/conversions.rb (limited to 'activesupport/lib') diff --git a/activesupport/lib/active_support/core_ext/date_time/conversions.rb b/activesupport/lib/active_support/core_ext/date_time/conversions.rb new file mode 100644 index 0000000000..48a13e1fde --- /dev/null +++ b/activesupport/lib/active_support/core_ext/date_time/conversions.rb @@ -0,0 +1,28 @@ +module ActiveSupport #:nodoc: + module CoreExtensions #:nodoc: + module DateTime #:nodoc: + # Getting datetimes in different convenient string representations and other objects + module Conversions + DATE_FORMATS = { + :db => "%Y-%m-%d %H:%M:%S", + :time => "%H:%M", + :short => "%d %b %H:%M", + :long => "%B %d, %Y %H:%M", + :rfc822 => "%a, %d %b %Y %H:%M:%S %z" + } + def self.included(klass) + klass.send(:alias_method, :to_datetime_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_datetime_default_s + end + + def to_date + ::Date.new(year, month, day) + end + end + end + end +end \ No newline at end of file -- cgit v1.2.3