diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-02-13 02:10:13 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-02-13 02:10:13 -0200 |
commit | 944d314244676932eb1aa285d23f7d91f0678e68 (patch) | |
tree | 804bd0d58e1b3311bbab5df02f68e26df7e0100d /actionpack/lib/action_view/helpers | |
parent | fbd917f50a6046d02dd6a64ccfb1aed0cbce68d8 (diff) | |
download | rails-944d314244676932eb1aa285d23f7d91f0678e68.tar.gz rails-944d314244676932eb1aa285d23f7d91f0678e68.tar.bz2 rails-944d314244676932eb1aa285d23f7d91f0678e68.zip |
Add Date#rfc3339 and Date#iso8601 to AS
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r-- | actionpack/lib/action_view/helpers/date_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb index 737720792a..dc8e4bc316 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -1,5 +1,6 @@ require 'date' require 'action_view/helpers/tag_helper' +require 'active_support/core_ext/date/conversions' require 'active_support/core_ext/hash/slice' require 'active_support/core_ext/object/with_options' |