From 3337da9e9424035583f9f5fb4bf710f3bcd68afc Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Fri, 1 Jan 2010 20:25:06 +0100 Subject: [PATCH] cache.rb requires active_support/core_ext/string/inflections because it uses camelize --- activesupport/lib/active_support/cache.rb | 1 + 1 file changed, 1 insertion(+) 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/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. -- GitLab