summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/json/common.rb15
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/json/common.rb b/lib/json/common.rb
index c34fa61..747effe 100644
--- a/lib/json/common.rb
+++ b/lib/json/common.rb
@@ -109,7 +109,20 @@ module JSON
# JSON.create_id # => 'json_class'
attr_accessor :create_id
end
- self.create_id = 'json_class'
+
+ DEFAULT_CREATE_ID = 'json_class'.freeze
+ private_constant :DEFAULT_CREATE_ID
+
+ CREATE_ID_TLS_KEY = "JSON.create_id".freeze
+ private_constant :CREATE_ID_TLS_KEY
+
+ def self.create_id
+ Thread.current[CREATE_ID_TLS_KEY] || DEFAULT_CREATE_ID
+ end
+
+ def self.create_id=(new_value)
+ Thread.current[CREATE_ID_TLS_KEY] = new_value.dup.freeze
+ end
NaN = 0.0/0