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.
@@ -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 'open4'
228
- exit_status = Open4.popen4(rake_path, 'test', '--trace') do |stdin, stdout, stderr, thr|
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'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 8
9
- version: 0.1.8
8
+ - 9
9
+ version: 0.1.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Erik Hollensbe