mutant 0.2.15 → 0.2.16

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog.md CHANGED
@@ -1,3 +1,7 @@
1
+ # v0.2.16 2013-01-20
2
+
3
+ * [fixed] Handle Rubinius::AST::NthRef as noop
4
+
1
5
  # v0.2.15 2013-01-10
2
6
 
3
7
  * [change] Do not mutate super to super() anymore. This needs a context check in future.
data/Gemfile.devtools CHANGED
@@ -18,7 +18,10 @@ group :guard do
18
18
  # file system change event handling
19
19
  gem 'rb-fchange', '~> 0.0.6', :require => false
20
20
  gem 'rb-fsevent', '~> 0.9.3', :require => false
21
- gem 'rb-inotify', '~> 0.8.8', :require => false, :git => 'https://github.com/nex3/rb-inotify'
21
+ gem 'rb-inotify', '~> 0.9.0', :require => false
22
+
23
+ # Remove this one https://github.com/guard/listen/pull/78 is released
24
+ gem 'listen', '~> 0.7.2', :git => 'https://github.com/guard/listen'
22
25
 
23
26
  # notification handling
24
27
  gem 'libnotify', '~> 0.8.0', :require => false
@@ -30,7 +33,7 @@ group :metrics do
30
33
  gem 'backports', '~> 2.6.5'
31
34
  gem 'flay', '~> 1.4.3'
32
35
  gem 'flog', '~> 2.5.3'
33
- gem 'reek', '~> 1.2.13', :git => 'https://github.com/dkubb/reek.git', :branch => 'fix-redundant-irresponsible-module-warnings'
36
+ gem 'reek', '~> 1.2.13', :git => 'https://github.com/troessner/reek.git'
34
37
  gem 'roodi', '~> 2.1.0'
35
38
  gem 'yardstick', '~> 0.8.0'
36
39
 
@@ -33,6 +33,7 @@ module Mutant
33
33
  handle(Rubinius::AST::DynamicSymbol)
34
34
  handle(Rubinius::AST::DynamicRegex)
35
35
  handle(Rubinius::AST::File)
36
+ handle(Rubinius::AST::NthRef)
36
37
  handle(Rubinius::AST::OpAssignOr19)
37
38
  handle(Rubinius::AST::BlockPass19)
38
39
  handle(Rubinius::AST::OpAssign1)
data/mutant.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = 'mutant'
5
- gem.version = '0.2.15'
5
+ gem.version = '0.2.16'
6
6
  gem.authors = [ 'Markus Schirp' ]
7
7
  gem.email = [ 'mbj@seonic.net' ]
8
8
  gem.description = 'Mutation testing for ruby'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mutant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.15
4
+ version: 0.2.16
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-10 00:00:00.000000000 Z
12
+ date: 2013-01-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: to_source