From fd15359104afbdf86f86a1c1f9b424b855fb3071 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 18 May 2007 21:20:35 +0000 Subject: Date, Time, and DateTime#to_json. Closes #8399. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6773 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/json/encoders/date.rb | 5 +++++ activesupport/lib/active_support/json/encoders/date_time.rb | 5 +++++ activesupport/lib/active_support/json/encoders/time.rb | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 activesupport/lib/active_support/json/encoders/date.rb create mode 100644 activesupport/lib/active_support/json/encoders/date_time.rb create mode 100644 activesupport/lib/active_support/json/encoders/time.rb (limited to 'activesupport/lib/active_support/json') diff --git a/activesupport/lib/active_support/json/encoders/date.rb b/activesupport/lib/active_support/json/encoders/date.rb new file mode 100644 index 0000000000..ee1a472f3f --- /dev/null +++ b/activesupport/lib/active_support/json/encoders/date.rb @@ -0,0 +1,5 @@ +class Date + def to_json #:nodoc: + %("#{strftime("%m/%d/%Y")}") + end +end diff --git a/activesupport/lib/active_support/json/encoders/date_time.rb b/activesupport/lib/active_support/json/encoders/date_time.rb new file mode 100644 index 0000000000..28cb18977d --- /dev/null +++ b/activesupport/lib/active_support/json/encoders/date_time.rb @@ -0,0 +1,5 @@ +class DateTime + def to_json #:nodoc: + %("#{strftime("%m/%d/%Y %H:%M:%S %Z")}") + end +end diff --git a/activesupport/lib/active_support/json/encoders/time.rb b/activesupport/lib/active_support/json/encoders/time.rb new file mode 100644 index 0000000000..080e9392f1 --- /dev/null +++ b/activesupport/lib/active_support/json/encoders/time.rb @@ -0,0 +1,5 @@ +class Time + def to_json #:nodoc: + %("#{strftime("%m/%d/%Y %H:%M:%S %Z")}") + end +end -- cgit v1.2.3