diff options
author | Matthew Draper <matthew@trebex.net> | 2015-11-19 11:01:31 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2015-11-19 11:19:07 +1030 |
commit | b5384d91a4e761023602d7eeb2ad92be0fe44815 (patch) | |
tree | 0ae33194dded22751bd912851831ec6f0a920bed | |
parent | 3d8a7c0e64fef726c22fd64911771cee8c467447 (diff) | |
download | rails-b5384d91a4e761023602d7eeb2ad92be0fe44815.tar.gz rails-b5384d91a4e761023602d7eeb2ad92be0fe44815.tar.bz2 rails-b5384d91a4e761023602d7eeb2ad92be0fe44815.zip |
Add missing require
Fixes #22311
-rw-r--r-- | activesupport/lib/active_support/per_thread_registry.rb | 2 |
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. # |