aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache/strategy/local_cache.rb
diff options
context:
space:
mode:
authorLucas Mazza <lucastmazza@gmail.com>2014-04-09 13:57:32 -0300
committerLucas Mazza <lucastmazza@gmail.com>2014-04-09 14:08:47 -0300
commit0645a1a8eea9cec862b00528b02d87eae39c420f (patch)
treeab1192e2b61209ee735763eb45dd65dd7c9fd27f /activesupport/lib/active_support/cache/strategy/local_cache.rb
parent040a1dbb11495490ca3f7c882cda1815316e7256 (diff)
downloadrails-0645a1a8eea9cec862b00528b02d87eae39c420f.tar.gz
rails-0645a1a8eea9cec862b00528b02d87eae39c420f.tar.bz2
rails-0645a1a8eea9cec862b00528b02d87eae39c420f.zip
Add missing require so requiring `active_support/cache` works again.
Diffstat (limited to 'activesupport/lib/active_support/cache/strategy/local_cache.rb')
-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