From 194fc9de5d0d0838e456c9a01cdb14f716fb92d9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 21 May 2005 14:57:23 +0000 Subject: Slight change to allow custom date/time conversions #1326 [Rick Olson] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1344 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/core_ext/date/conversions.rb | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'activesupport/lib/active_support/core_ext/date/conversions.rb') diff --git a/activesupport/lib/active_support/core_ext/date/conversions.rb b/activesupport/lib/active_support/core_ext/date/conversions.rb index e6ddf9fade..048a260ada 100644 --- a/activesupport/lib/active_support/core_ext/date/conversions.rb +++ b/activesupport/lib/active_support/core_ext/date/conversions.rb @@ -3,6 +3,11 @@ module ActiveSupport #: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.append_features(klass) #:nodoc: super klass.send(:alias_method, :to_default_s, :to_s) @@ -10,11 +15,7 @@ module ActiveSupport #:nodoc: end def to_formatted_s(format = :default) - case format - when :default then to_default_s - when :short then strftime("%e %b").strip - when :long then strftime("%B %e, %Y").strip - end + DATE_FORMATS[format] ? strftime(DATE_FORMATS[format]).strip : to_default_s end # To be able to keep Dates and Times interchangeable on conversions -- cgit v1.2.3