aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-04-09 14:12:21 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-04-09 14:12:21 -0300
commit7142ff8f3dd0eda4c3cabd5d2ca5eefc0aebb22b (patch)
tree27ba234d0525b86b7fe5b0b966de174abd8cd8f7 /activesupport
parentb053a47b3e7b755d797a5185895eabcfc50b2f3b (diff)
parent0645a1a8eea9cec862b00528b02d87eae39c420f (diff)
downloadrails-7142ff8f3dd0eda4c3cabd5d2ca5eefc0aebb22b.tar.gz
rails-7142ff8f3dd0eda4c3cabd5d2ca5eefc0aebb22b.tar.bz2
rails-7142ff8f3dd0eda4c3cabd5d2ca5eefc0aebb22b.zip
Merge pull request #14667 from lucasmazza/require-per-thread-registry
Add missing require so requiring `active_support/cache` works again.
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/cache/strategy/local_cache.rb1
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