aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-08-27 14:56:58 -0300
committerJosé Valim <jose.valim@gmail.com>2010-08-27 14:56:58 -0300
commitd0e067f61b441e04c0f117e28aae07f6b3ceaa79 (patch)
tree136c8825d7a80eba57bf6ea186679938e132820d /actionpack/lib
parentf95ba5c262bfd713f0a2fc656f8e645d3eea60f2 (diff)
downloadrails-d0e067f61b441e04c0f117e28aae07f6b3ceaa79.tar.gz
rails-d0e067f61b441e04c0f117e28aae07f6b3ceaa79.tar.bz2
rails-d0e067f61b441e04c0f117e28aae07f6b3ceaa79.zip
Add missing require.
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/date_helper.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb
index 1127792315..9891478606 100644
--- a/actionpack/lib/action_view/helpers/date_helper.rb
+++ b/actionpack/lib/action_view/helpers/date_helper.rb
@@ -1,6 +1,7 @@
-require "date"
+require 'date'
require 'action_view/helpers/tag_helper'
require 'active_support/core_ext/hash/slice'
+require 'active_support/core_ext/object/with_options'
module ActionView
module Helpers