aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date_time/conversions.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-05-26 01:07:25 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-05-26 01:07:25 +0000
commit66bde4ca521eddb3210f8d5a0ab20e55a3047e9c (patch)
tree2f8862cb27ce167fe96506eecc917c492d994347 /activesupport/lib/active_support/core_ext/date_time/conversions.rb
parent26f88892a96cf6297572ca6a644d5fbcbb1f2f10 (diff)
downloadrails-66bde4ca521eddb3210f8d5a0ab20e55a3047e9c.tar.gz
rails-66bde4ca521eddb3210f8d5a0ab20e55a3047e9c.tar.bz2
rails-66bde4ca521eddb3210f8d5a0ab20e55a3047e9c.zip
DateTime uses Time formats. Closes #8476.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6854 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date_time/conversions.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/date_time/conversions.rb11
1 files changed, 1 insertions, 10 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time/conversions.rb b/activesupport/lib/active_support/core_ext/date_time/conversions.rb
index f0a0b5892b..0b66593499 100644
--- a/activesupport/lib/active_support/core_ext/date_time/conversions.rb
+++ b/activesupport/lib/active_support/core_ext/date_time/conversions.rb
@@ -3,22 +3,13 @@ module ActiveSupport #: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",
- :long_ordinal => lambda { |datetime| datetime.strftime("%B #{datetime.day.ordinalize}, %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)
- if formatter = DATE_FORMATS[format]
+ if formatter = ::Time::DATE_FORMATS[format]
if formatter.respond_to?(:call)
formatter.call(self).to_s
else