aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-01-01 20:25:06 +0100
committerJeremy Kemper <jeremy@bitsweat.net>2010-01-01 14:28:55 -0800
commit3337da9e9424035583f9f5fb4bf710f3bcd68afc (patch)
tree6d6acc5a9e69b50eed6bed29251bd229e17d1875
parent13168e659465df26e66df61f100e9d701ee88061 (diff)
downloadrails-3337da9e9424035583f9f5fb4bf710f3bcd68afc.tar.gz
rails-3337da9e9424035583f9f5fb4bf710f3bcd68afc.tar.bz2
rails-3337da9e9424035583f9f5fb4bf710f3bcd68afc.zip
cache.rb requires active_support/core_ext/string/inflections because it uses camelize
-rw-r--r--activesupport/lib/active_support/cache.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb
index f2d957f154..ad238c1d96 100644
--- a/activesupport/lib/active_support/cache.rb
+++ b/activesupport/lib/active_support/cache.rb
@@ -4,6 +4,7 @@ require 'active_support/core_ext/benchmark'
require 'active_support/core_ext/exception'
require 'active_support/core_ext/class/attribute_accessors'
require 'active_support/core_ext/object/to_param'
+require 'active_support/core_ext/string/inflections'
module ActiveSupport
# See ActiveSupport::Cache::Store for documentation.