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

rbinstall.rb: record default gem files

This commit is contained in:
Nobuyoshi Nakada 2021-04-10 12:41:36 +09:00
parent af8ac97fcc
commit 6c7d39aabe
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -820,6 +820,11 @@ module RbInstall
super unless $dryrun
$installed_list.puts(without_destdir(spec_file)) if $installed_list
end
def write_default_spec
super unless $dryrun
$installed_list.puts(without_destdir(default_spec_file)) if $installed_list
end
end
class GemInstaller