mutant 0.2.6 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Changelog.md +6 -0
  2. data/TODO +27 -13
  3. data/mutant.gemspec +3 -3
  4. metadata +6 -6
data/Changelog.md CHANGED
@@ -1,3 +1,9 @@
1
+ # v0.2.7 2012-12-21
2
+
3
+ * [fixed] Use latest adamantium and ice_nine
4
+
5
+ [Compare v0.2.6..v0.2.7](https://github.com/mbj/mutant/compare/v0.2.6...v0.2.7)
6
+
1
7
  # v0.2.6 2012-12-14
2
8
 
3
9
  * [fixed] Correctly set file and line of injected mutants
data/TODO CHANGED
@@ -1,13 +1,27 @@
1
- * Test mutant with zombie.
2
- * Allow matches on attr_reader with literal name argument(s)?
3
- * Allow matches on define_method with literal name argument?
4
- * Add some kind of a "do not touch me object" that raises on all messages.
5
- It can be used to make sure each literal value is touched.
6
- * Replace nil or add "do not touch me object" to literal mutations.
7
- * Add support remaining dynamic literals
8
- * Mutate options on Regexp literals
9
- * Support the numerous Rubinius::AST::SendWithArguments mutations.
10
- * Fix rubinius to allow setting @vcall_style variable in Rubinius::AST::Send nodes.
11
- * Aggregate warnings on missing spec files
12
- * Make sure loader does not change visibility of injected mutants
13
- * Collect emmited mutants per subtree and do not emit the same subtree twice.
1
+ Code:
2
+ * Test mutant with dynamically created zombie.
3
+ * Replace nil or add "do not touch me object" to literal mutations.
4
+ * Fix ugly code within default parameters
5
+
6
+ AST:
7
+ * Fix the rubinius AST to allow setting @vcall_style variable in Rubinius::AST::Send nodes.
8
+
9
+ Mutations:
10
+ * Add some kind of a "do not touch me object" that raises on all messages.
11
+ It can be used to make sure each literal value is touched.
12
+ * Mutate options on Regexp literals
13
+ * Make sure loader does not change visibility of injected mutants
14
+ * Add mutations for dynamic regexp symbol and string literals
15
+
16
+ Killers:
17
+ * Aggregate warnings on missing spec files
18
+ * Add a general master <=> killer IPC interface. So different strategies of isolation
19
+ (fork, vs jruby runtime creation) will work without big impact.
20
+
21
+ Matcher:
22
+ * Allow matches on attr_reader with literal name argument(s)?
23
+ * Allow matches on define_method with literal name argument?
24
+
25
+ jruby-support:
26
+ * Hook melbourne via ffi
27
+ * Create a runtime per mutation to kill mutations in isolation
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.6'
5
+ gem.version = '0.2.7'
6
6
  gem.authors = [ 'Markus Schirp' ]
7
7
  gem.email = [ 'mbj@seonic.net' ]
8
8
  gem.description = 'Mutation testing for ruby under rubinius'
@@ -16,10 +16,10 @@ Gem::Specification.new do |gem|
16
16
  gem.executables = [ 'mutant' ]
17
17
 
18
18
  gem.add_runtime_dependency('to_source', '~> 0.2.5')
19
- gem.add_runtime_dependency('ice_nine', '~> 0.5.0')
19
+ gem.add_runtime_dependency('ice_nine', '~> 0.6.0')
20
20
  gem.add_runtime_dependency('descendants_tracker', '~> 0.0.1')
21
21
  gem.add_runtime_dependency('backports', '~> 2.6')
22
- gem.add_runtime_dependency('adamantium', '~> 0.0.3')
22
+ gem.add_runtime_dependency('adamantium', '~> 0.0.4')
23
23
  gem.add_runtime_dependency('mbj-inflector', '~> 0.0.1')
24
24
  gem.add_runtime_dependency('equalizer', '~> 0.0.1')
25
25
  gem.add_runtime_dependency('abstract_type', '~> 0.0.2')
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.6
4
+ version: 0.2.7
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: 2012-12-14 00:00:00.000000000 Z
12
+ date: 2012-12-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: to_source
@@ -34,7 +34,7 @@ dependencies:
34
34
  requirements:
35
35
  - - ~>
36
36
  - !ruby/object:Gem::Version
37
- version: 0.5.0
37
+ version: 0.6.0
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
@@ -42,7 +42,7 @@ dependencies:
42
42
  requirements:
43
43
  - - ~>
44
44
  - !ruby/object:Gem::Version
45
- version: 0.5.0
45
+ version: 0.6.0
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: descendants_tracker
48
48
  requirement: !ruby/object:Gem::Requirement
@@ -82,7 +82,7 @@ dependencies:
82
82
  requirements:
83
83
  - - ~>
84
84
  - !ruby/object:Gem::Version
85
- version: 0.0.3
85
+ version: 0.0.4
86
86
  type: :runtime
87
87
  prerelease: false
88
88
  version_requirements: !ruby/object:Gem::Requirement
@@ -90,7 +90,7 @@ dependencies:
90
90
  requirements:
91
91
  - - ~>
92
92
  - !ruby/object:Gem::Version
93
- version: 0.0.3
93
+ version: 0.0.4
94
94
  - !ruby/object:Gem::Dependency
95
95
  name: mbj-inflector
96
96
  requirement: !ruby/object:Gem::Requirement