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 super unless $dryrun
$installed_list.puts(without_destdir(spec_file)) if $installed_list $installed_list.puts(without_destdir(spec_file)) if $installed_list
end end
def write_default_spec
super unless $dryrun
$installed_list.puts(without_destdir(default_spec_file)) if $installed_list
end
end end
class GemInstaller class GemInstaller