summaryrefslogtreecommitdiff
path: root/lib/rubygems/commands/list_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems/commands/list_command.rb')
-rw-r--r--lib/rubygems/commands/list_command.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/rubygems/commands/list_command.rb b/lib/rubygems/commands/list_command.rb
index d9b7a9535e..f3e5da9551 100644
--- a/lib/rubygems/commands/list_command.rb
+++ b/lib/rubygems/commands/list_command.rb
@@ -7,9 +7,8 @@ require 'rubygems/commands/query_command'
class Gem::Commands::ListCommand < Gem::Commands::QueryCommand
- def initialize(name = 'list',
- summary = 'Display gems whose name starts with STRING')
- super name, summary
+ def initialize
+ super 'list', 'Display gems whose name starts with STRING'
remove_option('--name-matches')
end
@@ -27,9 +26,8 @@ class Gem::Commands::ListCommand < Gem::Commands::QueryCommand
end
def execute
- name = get_one_optional_argument || ''
- options[:name] = /^#{name}/i
-
+ string = get_one_optional_argument || ''
+ options[:name] = /^#{string}/i
super
end