diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-21 17:09:20 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-21 17:09:20 +0000 |
commit | cf659de14140950638f2f02831a42721fd8d2f75 (patch) | |
tree | 302732fe277b2ae85dcf4dc0c3ed5312d1b08eaf /activesupport/lib | |
parent | 8401218becb5150c722f275cc4d7397fad24c201 (diff) | |
download | rails-cf659de14140950638f2f02831a42721fd8d2f75.tar.gz rails-cf659de14140950638f2f02831a42721fd8d2f75.tar.bz2 rails-cf659de14140950638f2f02831a42721fd8d2f75.zip |
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
Diffstat (limited to 'activesupport/lib')
3 files changed, 41 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/date.rb b/activesupport/lib/active_support/core_ext/date.rb new file mode 100644 index 0000000000..239b8c140a --- /dev/null +++ b/activesupport/lib/active_support/core_ext/date.rb @@ -0,0 +1,6 @@ +require 'date' +require File.dirname(__FILE__) + '/date/conversions' + +class Date#:nodoc: + include ActiveSupport::CoreExtensions::Date::Conversions +end diff --git a/activesupport/lib/active_support/core_ext/date/conversions.rb b/activesupport/lib/active_support/core_ext/date/conversions.rb new file mode 100644 index 0000000000..3520b7a6b9 --- /dev/null +++ b/activesupport/lib/active_support/core_ext/date/conversions.rb @@ -0,0 +1,31 @@ +module ActiveSupport #:nodoc: + module CoreExtensions #:nodoc: + module Date #:nodoc: + # Getting dates in different convenient string representations and other objects + module Conversions + def self.append_features(klass) + super + 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) + case format + when :default then to_default_s + when :short then strftime("%e %b").strip + when :long then strftime("%B %e, %Y").strip + end + end + + # To be able to keep Dates and Times interchangeable on conversions + def to_date + self + end + + def to_time(form = :local) + ::Time.send(form, year, month, day) + end + end + end + end +end
\ No newline at end of file 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 |