diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 20:21:53 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:55 -0800 |
commit | 13168e659465df26e66df61f100e9d701ee88061 (patch) | |
tree | 01cffa5c0f5dc261e03233e42343f3e6205eee1c /activesupport/lib | |
parent | f1e34cc41de124cab5fa78f7c27483d4610074a7 (diff) | |
download | rails-13168e659465df26e66df61f100e9d701ee88061.tar.gz rails-13168e659465df26e66df61f100e9d701ee88061.tar.bz2 rails-13168e659465df26e66df61f100e9d701ee88061.zip |
requires active_support/inflector/methods active_support/core_ext/string/inflections in local_cache.rb because it uses underscore
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/cache/strategy/local_cache.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache/strategy/local_cache.rb b/activesupport/lib/active_support/cache/strategy/local_cache.rb index 5f6fe22416..66df7ad7f9 100644 --- a/activesupport/lib/active_support/cache/strategy/local_cache.rb +++ b/activesupport/lib/active_support/cache/strategy/local_cache.rb @@ -1,4 +1,5 @@ require 'active_support/core_ext/object/duplicable' +require 'active_support/inflector/methods active_support/core_ext/string/inflections' module ActiveSupport module Cache |