From 866831d8e9713cbf1b2bcc710a6da81f2b748855 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 16 Mar 2023 14:16:30 +0900 Subject: [PATCH] [rubygems/rubygems] util/rubocop -A --only Style/Semicolon https://github.com/rubygems/rubygems/commit/97f062be05 --- test/rubygems/test_gem_specification.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/rubygems/test_gem_specification.rb b/test/rubygems/test_gem_specification.rb index 69c553f14b..28b4d5e72c 100644 --- a/test/rubygems/test_gem_specification.rb +++ b/test/rubygems/test_gem_specification.rb @@ -804,7 +804,10 @@ dependencies: [] end full_path.taint - loader = Thread.new { $SAFE = 1; Gem::Specification.load full_path } + loader = Thread.new do + $SAFE = 1 + Gem::Specification.load full_path + end spec = loader.value @a2.files.clear