Run gem install as external command. [#210 state:resolved]

This commit is contained in:
Tim Morgan 2008-05-16 07:19:00 -05:00 committed by rick
parent 2243ffd1ff
commit fb89d7fa6d

@ -73,7 +73,7 @@ def load_paths_added?
end
def install
Gem::GemRunner.new.run(install_command)
puts `#{gem_command} #{install_command.join(' ')}`
end
def unpack_to(directory)
@ -100,6 +100,10 @@ def ==(other)
def specification
@spec ||= Gem.source_index.search(Gem::Dependency.new(@name, @requirement)).sort_by { |s| s.version }.last
end
def gem_command
RUBY_PLATFORM =~ /win32/ ? 'gem.bat' : 'gem'
end
def install_command
cmd = %w(install) << @name