mutant 0.6.4 → 0.6.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee4fb487c413c8106f0b826458a2914efa842775
4
- data.tar.gz: 005c891d8fbcd19a1e4ec806ce39a2d05defcdd3
3
+ metadata.gz: adcae01356f50d7189c8965ae495530cc0ad994e
4
+ data.tar.gz: d6816c3ea9d5f2c47faa6fa6f6dbab79495ef327
5
5
  SHA512:
6
- metadata.gz: 537342f44d70f3c23696de4962157ec74b7a0383f587c6db897bf216b7e2fe7f22572e84a54e3c055434a5bb5cbd061109655f25d1e3d2418643f9ec716cb147
7
- data.tar.gz: 77045f8132668b54c86989ff3c0fa8e75615ebd555bbba305d7da26bded1c7414d6503d0ef16a5ae52547a3fa0a92f142f01f43678762d46dccf57d1bb9e1318
6
+ metadata.gz: c67496fe405ff7ff754cc5614a67518de4b633e18b22072a99ab9812d76c63016cf97ca88f1faa0ac9478fe1cea9fca04e1eebdf21a135f1755cc302fc694035
7
+ data.tar.gz: 1dbe0321e54c4bf8ccfaf531553133c966b6c22402e18b69cf064becd37c37023639a9e51253eccba71a5814d60f8883db16b4c3a0873ca8ab0536eba59fcfa5
data/Changelog.md CHANGED
@@ -1,4 +1,8 @@
1
- # v0.6.4 2014-10-xx
1
+ # v0.6.5 2014-10-29
2
+
3
+ * Fix killforks not to leak zombies.
4
+
5
+ # v0.6.4 2014-10-28
2
6
 
3
7
  * Do not buffer report prints, speedup large report generation.
4
8
  * Fix some cases where --fail-fast semantics stopped far to late.
@@ -51,10 +51,11 @@ module Mutant
51
51
 
52
52
  writer.close
53
53
  result = Marshal.load(reader.read)
54
- Process.waitpid(pid)
55
54
  result
56
55
  rescue => exception
57
56
  fail Error, exception
57
+ ensure
58
+ Process.waitpid(pid) if pid
58
59
  end
59
60
 
60
61
  end # Fork
@@ -1,4 +1,4 @@
1
1
  module Mutant
2
2
  # The current mutant version
3
- VERSION = '0.6.4'.freeze
3
+ VERSION = '0.6.5'.freeze
4
4
  end # Mutant
@@ -44,8 +44,14 @@ RSpec.describe 'rspec integration' do
44
44
  it_behaves_like 'rspec integration'
45
45
  end
46
46
 
47
- context 'RSpec 3' do
48
- let(:gemfile) { 'Gemfile.rspec3' }
47
+ context 'RSpec 3.0' do
48
+ let(:gemfile) { 'Gemfile.rspec3.0' }
49
+
50
+ it_behaves_like 'rspec integration'
51
+ end
52
+
53
+ context 'RSpec 3.1' do
54
+ let(:gemfile) { 'Gemfile.rspec3.1' }
49
55
 
50
56
  it_behaves_like 'rspec integration'
51
57
  end
File without changes
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+ gem 'rspec', '~> 3.1.0'
3
+ gem 'rspec-core', '~> 3.1.0'
4
+ gem 'mutant', path: '../'
5
+ gem 'mutant-rspec', path: '../'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mutant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Schirp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-27 00:00:00.000000000 Z
11
+ date: 2014-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parser
@@ -507,7 +507,8 @@ files:
507
507
  - test_app/.rspec
508
508
  - test_app/Gemfile.devtools
509
509
  - test_app/Gemfile.rspec2
510
- - test_app/Gemfile.rspec3
510
+ - test_app/Gemfile.rspec3.0
511
+ - test_app/Gemfile.rspec3.1
511
512
  - test_app/lib/test_app.rb
512
513
  - test_app/lib/test_app/literal.rb
513
514
  - test_app/spec/spec_helper.rb