From 0645a1a8eea9cec862b00528b02d87eae39c420f Mon Sep 17 00:00:00 2001 From: Lucas Mazza Date: Wed, 9 Apr 2014 13:57:32 -0300 Subject: [PATCH] Add missing require so requiring `active_support/cache` works again. --- activesupport/lib/active_support/cache/strategy/local_cache.rb | 1 + 1 file changed, 1 insertion(+) 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 -- GitLab