diff options
author | Lucas Mazza <lucastmazza@gmail.com> | 2014-04-09 13:57:32 -0300 |
---|---|---|
committer | Lucas Mazza <lucastmazza@gmail.com> | 2014-04-09 14:08:47 -0300 |
commit | 0645a1a8eea9cec862b00528b02d87eae39c420f (patch) | |
tree | ab1192e2b61209ee735763eb45dd65dd7c9fd27f | |
parent | 040a1dbb11495490ca3f7c882cda1815316e7256 (diff) | |
download | rails-0645a1a8eea9cec862b00528b02d87eae39c420f.tar.gz rails-0645a1a8eea9cec862b00528b02d87eae39c420f.tar.bz2 rails-0645a1a8eea9cec862b00528b02d87eae39c420f.zip |
Add missing require so requiring `active_support/cache` works again.
-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 e9ee98a128..73c6b3cb88 100644 --- a/activesupport/lib/active_support/cache/strategy/local_cache.rb +++ b/activesupport/lib/active_support/cache/strategy/local_cache.rb @@ -1,5 +1,6 @@ require 'active_support/core_ext/object/duplicable' require 'active_support/core_ext/string/inflections' +require 'active_support/per_thread_registry' module ActiveSupport module Cache |