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 +4 -0
- data/Gemfile.devtools +5 -2
- data/lib/mutant/mutator/node/noop.rb +1 -0
- data/mutant.gemspec +1 -1
- metadata +2 -2
data/Changelog.md
CHANGED
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.
|
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/
|
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
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.
|
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-
|
12
|
+
date: 2013-01-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: to_source
|