From 0eb94dae4aec58de06051cf89d555994838452f2 Mon Sep 17 00:00:00 2001 From: Marc-Andre Lafortune Date: Sun, 20 Dec 2020 21:39:56 -0500 Subject: [ruby/psych] Freeze constants. Improves Ractor-readiness. --- ext/psych/lib/psych.rb | 4 ++-- ext/psych/lib/psych/class_loader.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/psych/lib/psych.rb b/ext/psych/lib/psych.rb index c3292d9172..347160e82f 100644 --- a/ext/psych/lib/psych.rb +++ b/ext/psych/lib/psych.rb @@ -233,9 +233,9 @@ require 'psych/class_loader' module Psych # The version of libyaml Psych is using - LIBYAML_VERSION = Psych.libyaml_version.join '.' + LIBYAML_VERSION = Psych.libyaml_version.join('.').freeze # Deprecation guard - NOT_GIVEN = Object.new + NOT_GIVEN = Object.new.freeze private_constant :NOT_GIVEN ### diff --git a/ext/psych/lib/psych/class_loader.rb b/ext/psych/lib/psych/class_loader.rb index cfca86845a..f62798c36d 100644 --- a/ext/psych/lib/psych/class_loader.rb +++ b/ext/psych/lib/psych/class_loader.rb @@ -69,7 +69,7 @@ module Psych rescue nil end - }.compact] + }.compact].freeze class Restricted < ClassLoader def initialize classes, symbols -- cgit v1.2.3