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

Support the current stable version of Ruby like 2.5 and 2.6.

This commit is contained in:
Hiroshi SHIBATA 2019-08-17 16:22:27 +09:00
parent 221ba9b66c
commit 7664b5cb65
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -357,7 +357,7 @@ class Gem::Installer
def run_pre_install_hooks # :nodoc:
Gem.pre_install_hooks.each do |hook|
if hook.call(self) == false
location = " at #{$1}" if hook.inspect =~ / (.*:\d+)/
location = " at #{$1}" if hook.inspect =~ /[ @](.*:\d+)/
message = "pre-install hook#{location} failed for #{spec.full_name}"
raise Gem::InstallError, message
@ -370,7 +370,7 @@ class Gem::Installer
if hook.call(self) == false
FileUtils.rm_rf gem_dir
location = " at #{$1}" if hook.inspect =~ / (.*:\d+)/
location = " at #{$1}" if hook.inspect =~ /[ @](.*:\d+)/
message = "post-build hook#{location} failed for #{spec.full_name}"
raise Gem::InstallError, message