rubygems-test 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rubygems/commands/test_command.rb +3 -3
- metadata +2 -2
@@ -224,10 +224,10 @@ class Gem::Commands::TestCommand < Gem::Command
|
|
224
224
|
end
|
225
225
|
exit_status = $?
|
226
226
|
elsif RUBY_VERSION > '1.9'
|
227
|
-
require '
|
228
|
-
exit_status =
|
227
|
+
require 'open3'
|
228
|
+
exit_status = Open3.popen3(rake_path, 'test', '--trace') do |stdin, stdout, stderr, thr|
|
229
229
|
outer_reader_proc.call(stdout, stderr)
|
230
|
-
thr
|
230
|
+
thr.value
|
231
231
|
end
|
232
232
|
else
|
233
233
|
require 'open4-vendor'
|