1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Try to revert the test failure with Ruby CI

20191111T093005Z.fail.html.gz
This commit is contained in:
Hiroshi SHIBATA 2019-11-11 20:19:29 +09:00
parent 9d3213ac85
commit 8b27c23b5d
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -61,13 +61,9 @@ module Kernel
spec = dep.to_spec
if spec
if Gem::LOADED_SPECS_MUTEX.owned?
spec.activate
else
Gem::LOADED_SPECS_MUTEX.synchronize { spec.activate }
end
end
Gem::LOADED_SPECS_MUTEX.synchronize do
spec.activate
end if spec
end
private :gem