aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2015-11-19 11:01:31 +1030
committerMatthew Draper <matthew@trebex.net>2015-11-19 11:19:07 +1030
commitb5384d91a4e761023602d7eeb2ad92be0fe44815 (patch)
tree0ae33194dded22751bd912851831ec6f0a920bed /activesupport
parent3d8a7c0e64fef726c22fd64911771cee8c467447 (diff)
downloadrails-b5384d91a4e761023602d7eeb2ad92be0fe44815.tar.gz
rails-b5384d91a4e761023602d7eeb2ad92be0fe44815.tar.bz2
rails-b5384d91a4e761023602d7eeb2ad92be0fe44815.zip
Add missing require
Fixes #22311
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/per_thread_registry.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/per_thread_registry.rb b/activesupport/lib/active_support/per_thread_registry.rb
index 506dd950cb..a909a65bb6 100644
--- a/activesupport/lib/active_support/per_thread_registry.rb
+++ b/activesupport/lib/active_support/per_thread_registry.rb
@@ -1,3 +1,5 @@
+require 'active_support/core_ext/module/delegation'
+
module ActiveSupport
# This module is used to encapsulate access to thread local variables.
#