module Fiber::FixBorkedKeys
This is a fix for the original implementation of fiber storage which incorrectly handled non-dynamic symbol keys.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 72 def [](key) raise TypeError, "Key must be symbol!" unless key.is_a?(Symbol) super(eval(key.inspect)) end
Lookup the value for the key, ensuring the symbol is dynamic.
Calls superclass method
Source
# File vendor/bundle/ruby/3.4.0/gems/fiber-storage-1.0.0/lib/fiber/storage.rb, line 79 def []=(key, value) raise TypeError, "Key must be symbol!" unless key.is_a?(Symbol) super(eval(key.inspect), value) end
Assign the value to the key, ensuring the symbol is dynamic.
Calls superclass method