diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2021-04-10 12:41:36 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2021-04-10 12:41:36 +0900 |
| commit | 6c7d39aabed9b70b6bf13cc27c2bff086cd99bda (patch) | |
| tree | 9b8945141ff725bd91250c958ac32a6c358789d4 | |
| parent | af8ac97fcc2c6d43655fa3b9cc650a5400ee4910 (diff) | |
rbinstall.rb: record default gem files
| -rwxr-xr-x | tool/rbinstall.rb | 5 |
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 |
