lib/rubygems/commands/help_command.rb in rubygems-update-3.2.0.rc.1 vs lib/rubygems/commands/help_command.rb in rubygems-update-3.2.0.rc.2
- old
+ new
@@ -1,10 +1,9 @@
# frozen_string_literal: true
require 'rubygems/command'
class Gem::Commands::HelpCommand < Gem::Command
-
# :stopdoc:
EXAMPLES = <<-EOF.freeze
Some examples of 'gem' usage.
* Install 'rake', either from local directory or remote server:
@@ -368,7 +367,6 @@
alert_warning "Ambiguous command #{command_name} (#{possibilities.join(', ')})"
else
alert_warning "Unknown command #{command_name}. Try: gem help commands"
end
end
-
end