summaryrefslogtreecommitdiff
path: root/tool/rbinstall.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-04-10 12:41:36 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-04-10 12:41:36 +0900
commit6c7d39aabed9b70b6bf13cc27c2bff086cd99bda (patch)
tree9b8945141ff725bd91250c958ac32a6c358789d4 /tool/rbinstall.rb
parentaf8ac97fcc2c6d43655fa3b9cc650a5400ee4910 (diff)
rbinstall.rb: record default gem files
Diffstat (limited to 'tool/rbinstall.rb')
-rwxr-xr-xtool/rbinstall.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index 2d0c4f320b..663717aa74 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -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