summaryrefslogtreecommitdiff
path: root/lib/forwardable.rb
diff options
context:
space:
mode:
authorrm155 <[email protected]>2021-07-27 12:47:31 -0400
committergit <[email protected]>2022-09-08 14:31:42 +0900
commit78af05ba0f29d1fc290dc24a6a5fb645386e7d62 (patch)
tree11f0300328983d14e2d2e3de6ab7ca61b5c46091 /lib/forwardable.rb
parent70e6be2b055d78d3c475368d744c423564597f6e (diff)
[ruby/forwardable] Freeze VERSION and FORWARDABLE_VERSION to improve Ractor-compliance
https://github.com/ruby/forwardable/commit/c91f41f4fa
Diffstat (limited to 'lib/forwardable.rb')
-rw-r--r--lib/forwardable.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/forwardable.rb b/lib/forwardable.rb
index c9c4128f9f..9318639f01 100644
--- a/lib/forwardable.rb
+++ b/lib/forwardable.rb
@@ -113,7 +113,9 @@ module Forwardable
# Version of +forwardable.rb+
VERSION = "1.3.2"
+ VERSION.freeze
FORWARDABLE_VERSION = VERSION
+ FORWARDABLE_VERSION.freeze
@debug = nil
class << self