aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/commands/sources_command.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-23 06:34:28 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-23 06:34:28 +0000
commited9690bba519982b694d03cdce536a3c5bcaf774 (patch)
treeefd3fbae27fdf79f631abccfe2af6c5e64a6f190 /lib/rubygems/commands/sources_command.rb
parent1777eaa523e48fa8023b0ab23e83f2c3187e62c5 (diff)
downloadruby-ed9690bba519982b694d03cdce536a3c5bcaf774.tar.gz
Fix warnings in RubyGems
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14513 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rubygems/commands/sources_command.rb')
-rw-r--r--lib/rubygems/commands/sources_command.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rubygems/commands/sources_command.rb b/lib/rubygems/commands/sources_command.rb
index def9c01a3f..a0977f90dc 100644
--- a/lib/rubygems/commands/sources_command.rb
+++ b/lib/rubygems/commands/sources_command.rb
@@ -92,8 +92,8 @@ class Gem::Commands::SourcesCommand < Gem::Command
say "*** CURRENT SOURCES ***"
say
- Gem.sources.each do |source_uri|
- say source_uri
+ Gem.sources.each do |source|
+ say source
end
end
end