aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2015-12-17 14:28:19 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2015-12-17 14:28:19 +0100
commit748b21db8ff850378b20a69ccd4215c06abea03e (patch)
treeb03b33698dabdea94b003af789b80fa5883535ad /activesupport/lib/active_support/core_ext/module.rb
parent7a53a9c13c997771797874b7549d389ced0be7b2 (diff)
downloadrails-748b21db8ff850378b20a69ccd4215c06abea03e.tar.gz
rails-748b21db8ff850378b20a69ccd4215c06abea03e.tar.bz2
rails-748b21db8ff850378b20a69ccd4215c06abea03e.zip
Add thread_m/cattr_accessor/reader/writer suite of methods for declaring class and module variables that live per-thread
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/module.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/module.rb b/activesupport/lib/active_support/core_ext/module.rb
index b4efff8b24..ef038331c2 100644
--- a/activesupport/lib/active_support/core_ext/module.rb
+++ b/activesupport/lib/active_support/core_ext/module.rb
@@ -3,6 +3,7 @@ require 'active_support/core_ext/module/introspection'
require 'active_support/core_ext/module/anonymous'
require 'active_support/core_ext/module/reachable'
require 'active_support/core_ext/module/attribute_accessors'
+require 'active_support/core_ext/module/attribute_accessors_per_thread'
require 'active_support/core_ext/module/attr_internal'
require 'active_support/core_ext/module/concerning'
require 'active_support/core_ext/module/delegation'