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

[ruby/psych] Don't require strscan unnecessarily

It does not seem needed, and it's causing issues on Windows when
uninstalling `strscan`, because strscan's shared library being used when
RubyGems tries to remove it (because its loaded through Psych, which
RubyGems uses for loading configuration).

https://github.com/ruby/psych/commit/3911356ec1
This commit is contained in:
David Rodríguez 2022-01-13 16:31:20 +01:00 committed by git
parent acd1f45a5c
commit 40d9be51e8

View file

@ -1,5 +1,4 @@
# frozen_string_literal: true
require 'strscan'
module Psych
###