1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Import RubyGems r1601. [ruby-core:15381].

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2008-02-10 08:00:19 +00:00
parent c12b289362
commit 5d613c83cc
26 changed files with 165 additions and 85 deletions

View file

@ -58,7 +58,11 @@ class Gem::Commands::EnvironmentCommand < Gem::Command
end
out << " - GEM PATHS:\n"
Gem.path.each do |p|
out << " - #{Gem.dir}\n"
path = Gem.path.dup
path.delete Gem.dir
path.each do |p|
out << " - #{p}\n"
end