diff options
author | Samuel Giddins <[email protected]> | 2023-10-20 17:56:22 -0700 |
---|---|---|
committer | git <[email protected]> | 2023-12-08 06:09:51 +0000 |
commit | 4817166e54ad98f9b3e9d06e9e8c7ccff992a957 (patch) | |
tree | f226bce0d78c12e867b6bbf63a876443f67c7a1c /lib/rubygems/commands/help_command.rb | |
parent | 0166d56f2bb062ddf56a0e7757849da68b66fe62 (diff) |
[rubygems/rubygems] Extract generate_index command to rubygems-generate_index gem
So generate_index can be implemented with dependencies, such as the compact index
Took this approach from feedback in https://github.com/rubygems/rubygems/pull/6853
Running `gem generate_index` by default will use an installed rubygems-generate_index, or install and then use the command from the gem
Apply suggestions from code review
https://github.com/rubygems/rubygems/commit/fc1cb9bc9e
Co-authored-by: Hiroshi SHIBATA <[email protected]>
Diffstat (limited to 'lib/rubygems/commands/help_command.rb')
-rw-r--r-- | lib/rubygems/commands/help_command.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rubygems/commands/help_command.rb b/lib/rubygems/commands/help_command.rb index 043e7d3691..8994f1aa09 100644 --- a/lib/rubygems/commands/help_command.rb +++ b/lib/rubygems/commands/help_command.rb @@ -333,7 +333,7 @@ platform. @command_manager.command_names.each do |cmd_name| command = @command_manager[cmd_name] - next if command.deprecated? + next if command&.deprecated? summary = if command |