From cf659de14140950638f2f02831a42721fd8d2f75 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 21 Feb 2005 17:09:20 +0000 Subject: Added Date::Conversions for getting dates in different convenient string representations and other objects git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@738 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/core_ext/time/conversions.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'activesupport/lib/active_support/core_ext/time/conversions.rb') diff --git a/activesupport/lib/active_support/core_ext/time/conversions.rb b/activesupport/lib/active_support/core_ext/time/conversions.rb index b79acf9f75..689da6db52 100644 --- a/activesupport/lib/active_support/core_ext/time/conversions.rb +++ b/activesupport/lib/active_support/core_ext/time/conversions.rb @@ -1,3 +1,5 @@ +require 'date' + module ActiveSupport #:nodoc: module CoreExtensions #:nodoc: module Time #:nodoc: @@ -14,12 +16,12 @@ module ActiveSupport #:nodoc: when :default then to_default_s when :db then strftime("%Y-%m-%d %H:%M:%S") when :short then strftime("%e %b %H:%M").strip - when :long then strftime("%e %B, %Y %H:%M").strip + when :long then strftime("%B %e, %Y %H:%M").strip end end def to_date - Date.new(year, month, day) + ::Date.new(year, month, day) end # To be able to keep Dates and Times interchangeable on conversions -- cgit v1.2.3