mutest 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +10 -10
- data/lib/mutest/ast/named_children.rb +1 -1
- data/lib/mutest/ast/regexp/transformer/text.rb +2 -0
- data/lib/mutest/ast/types.rb +2 -0
- data/lib/mutest/diff.rb +1 -1
- data/lib/mutest/expression.rb +1 -1
- data/lib/mutest/expression/methods.rb +1 -1
- data/lib/mutest/expression/namespace.rb +1 -1
- data/lib/mutest/matcher/method.rb +2 -2
- data/lib/mutest/matcher/method/instance.rb +1 -1
- data/lib/mutest/mutator/node.rb +5 -5
- data/lib/mutest/mutator/node/arguments.rb +1 -1
- data/lib/mutest/mutator/node/generic.rb +1 -0
- data/lib/mutest/mutator/node/literal/fixnum.rb +2 -2
- data/lib/mutest/mutator/node/when.rb +1 -1
- data/lib/mutest/repository.rb +1 -1
- data/lib/mutest/result.rb +6 -6
- data/lib/mutest/subject.rb +2 -2
- data/lib/mutest/version.rb +1 -1
- data/mutest.gemspec +2 -2
- data/spec/integrations.yml +1 -1
- data/spec/support/corpus.rb +6 -6
- data/spec/support/warnings.yml +2 -0
- data/spec/unit/mutest/ast/regexp_spec.rb +3 -18
- data/spec/unit/mutest/isolation/fork_spec.rb +1 -1
- data/spec/unit/mutest/loader_spec.rb +1 -1
- data/spec/unit/mutest/parallel/worker_spec.rb +1 -1
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b26a90026934472e1be77ed82cac4f77c7a81019
|
4
|
+
data.tar.gz: 190a041a713f8b506f3ed0c501cfdcdd8f761656
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d56c47a5af0f59e062267ec62d0f3c8b0b638f61666d246f8a342f3c79bda3c0ab1b6f04f392457840d32e47237194dc5acdf3efd3e264e95fb30add61b14eaa
|
7
|
+
data.tar.gz: 7ba5927e0912f67f2807de665da9a1c35ab4fc312edde1cb60d0667fc3bcbb81164e4ff10874a33fbee848fea92c97f71312e6dd094c697a44a0a5a701be5e81
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
6
6
|
|
7
7
|
## [Master (Unreleased)]
|
8
8
|
|
9
|
+
## [0.0.9] - 2018-04-22
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
|
13
|
+
- Updated `parser` and `regexp_parser` dependency requirements [[#89](https://github.com/backus/mutest/pull/89/files) ([@dgollahon][])]
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
|
17
|
+
- Resolved Fixnum warnings [[#89](https://github.com/backus/mutest/pull/89/files) ([@dgollahon][])]
|
18
|
+
|
9
19
|
## [0.0.8] - 2017-11-08
|
10
20
|
|
11
21
|
### Added
|
data/Gemfile.lock
CHANGED
@@ -23,9 +23,9 @@ PATH
|
|
23
23
|
memoizable (~> 0.4.2)
|
24
24
|
morpher (~> 0.2.6)
|
25
25
|
parallel (~> 1.3)
|
26
|
-
parser (
|
26
|
+
parser (>= 2.5.0.1, < 2.6)
|
27
27
|
procto (~> 0.0.2)
|
28
|
-
regexp_parser (~> 0.4.
|
28
|
+
regexp_parser (~> 0.4.9)
|
29
29
|
unparser (~> 0.2.5)
|
30
30
|
|
31
31
|
GEM
|
@@ -39,13 +39,13 @@ GEM
|
|
39
39
|
abstract_type (~> 0.0.7)
|
40
40
|
adamantium (~> 0.2)
|
41
41
|
equalizer (~> 0.0.11)
|
42
|
-
ast (2.
|
42
|
+
ast (2.4.0)
|
43
43
|
byebug (9.0.6)
|
44
44
|
coderay (1.1.1)
|
45
45
|
concord (0.1.5)
|
46
46
|
adamantium (~> 0.2.0)
|
47
47
|
equalizer (~> 0.0.9)
|
48
|
-
diff-lcs (1.
|
48
|
+
diff-lcs (1.3)
|
49
49
|
docile (1.1.5)
|
50
50
|
equalizer (0.0.11)
|
51
51
|
ice_nine (0.11.2)
|
@@ -63,8 +63,8 @@ GEM
|
|
63
63
|
ice_nine (~> 0.11.0)
|
64
64
|
procto (~> 0.0.2)
|
65
65
|
parallel (1.10.0)
|
66
|
-
parser (2.
|
67
|
-
ast (~> 2.
|
66
|
+
parser (2.5.1.0)
|
67
|
+
ast (~> 2.4.0)
|
68
68
|
powerpack (0.1.1)
|
69
69
|
procto (0.0.3)
|
70
70
|
pry (0.10.4)
|
@@ -77,7 +77,7 @@ GEM
|
|
77
77
|
rainbow (2.2.2)
|
78
78
|
rake
|
79
79
|
rake (12.0.0)
|
80
|
-
regexp_parser (0.4.
|
80
|
+
regexp_parser (0.4.13)
|
81
81
|
rspec (3.6.0)
|
82
82
|
rspec-core (~> 3.6.0)
|
83
83
|
rspec-expectations (~> 3.6.0)
|
@@ -111,13 +111,13 @@ GEM
|
|
111
111
|
slop (3.6.0)
|
112
112
|
thread_safe (0.3.5)
|
113
113
|
unicode-display_width (1.2.1)
|
114
|
-
unparser (0.2.
|
114
|
+
unparser (0.2.7)
|
115
115
|
abstract_type (~> 0.0.7)
|
116
116
|
adamantium (~> 0.2.0)
|
117
117
|
concord (~> 0.1.5)
|
118
|
-
diff-lcs (~> 1.
|
118
|
+
diff-lcs (~> 1.3)
|
119
119
|
equalizer (~> 0.0.9)
|
120
|
-
parser (
|
120
|
+
parser (>= 2.3.1.2, < 2.6)
|
121
121
|
procto (~> 0.0.2)
|
122
122
|
|
123
123
|
PLATFORMS
|
@@ -24,6 +24,7 @@ module Mutest
|
|
24
24
|
[:regexp_named_group, %i[group named], ::Regexp::Expression::Group::Named],
|
25
25
|
[:regexp_number_backref, %i[backref number], ::Regexp::Expression::Backreference::Number],
|
26
26
|
[:regexp_name_call_backref, %i[backref name_call], ::Regexp::Expression::Backreference::NameCall],
|
27
|
+
[:regexp_octal_escape, %i[escape octal], ::Regexp::Expression::EscapeSequence::Literal],
|
27
28
|
[:regexp_whitespace_free_space, %i[free_space whitespace], ::Regexp::Expression::WhiteSpace],
|
28
29
|
[:regexp_comment_free_space, %i[free_space comment], ::Regexp::Expression::WhiteSpace],
|
29
30
|
[:regexp_hex_escape, %i[escape hex], ::Regexp::Expression::EscapeSequence::Literal],
|
@@ -31,6 +32,7 @@ module Mutest
|
|
31
32
|
[:regexp_backslash_escape, %i[escape backslash], ::Regexp::Expression::EscapeSequence::Literal],
|
32
33
|
[:regexp_tab_escape, %i[escape tab], ::Regexp::Expression::EscapeSequence::Literal],
|
33
34
|
[:regexp_codepoint_list_escape, %i[escape codepoint_list], ::Regexp::Expression::EscapeSequence::Literal],
|
35
|
+
[:regexp_codepoint_escape, %i[escape codepoint], ::Regexp::Expression::EscapeSequence::Literal],
|
34
36
|
[:regexp_control_escape, %i[escape control], ::Regexp::Expression::EscapeSequence::Control],
|
35
37
|
[:regexp_meta_sequence_escape, %i[escape meta_sequence], ::Regexp::Expression::EscapeSequence::Control]
|
36
38
|
)
|
data/lib/mutest/ast/types.rb
CHANGED
@@ -56,6 +56,7 @@ module Mutest
|
|
56
56
|
regexp_character_set
|
57
57
|
regexp_character_set
|
58
58
|
regexp_codepoint_list_escape
|
59
|
+
regexp_codepoint_escape
|
59
60
|
regexp_comment_free_space
|
60
61
|
regexp_comment_group
|
61
62
|
regexp_control_escape
|
@@ -97,6 +98,7 @@ module Mutest
|
|
97
98
|
regexp_nonword_type
|
98
99
|
regexp_nonhex_type
|
99
100
|
regexp_number_backref
|
101
|
+
regexp_octal_escape
|
100
102
|
regexp_one_or_more_escape
|
101
103
|
regexp_open_conditional
|
102
104
|
regexp_options_group
|
data/lib/mutest/diff.rb
CHANGED
data/lib/mutest/expression.rb
CHANGED
@@ -96,14 +96,14 @@ module Mutest
|
|
96
96
|
|
97
97
|
# Source file line
|
98
98
|
#
|
99
|
-
# @return [
|
99
|
+
# @return [Integer]
|
100
100
|
def source_line
|
101
101
|
source_location.last
|
102
102
|
end
|
103
103
|
|
104
104
|
# Full source location
|
105
105
|
#
|
106
|
-
# @return [Array<String,
|
106
|
+
# @return [Array<String,Integer>]
|
107
107
|
def source_location
|
108
108
|
target_method.source_location
|
109
109
|
end
|
data/lib/mutest/mutator/node.rb
CHANGED
@@ -12,7 +12,7 @@ module Mutest
|
|
12
12
|
#
|
13
13
|
# @param [Parser::AST::Node] node
|
14
14
|
#
|
15
|
-
# @param [
|
15
|
+
# @param [Integer] index
|
16
16
|
#
|
17
17
|
# @return [undefined]
|
18
18
|
def self.define_named_child(name, index)
|
@@ -42,7 +42,7 @@ module Mutest
|
|
42
42
|
|
43
43
|
# Dispatch on child index
|
44
44
|
#
|
45
|
-
# @param [
|
45
|
+
# @param [Integer] index
|
46
46
|
#
|
47
47
|
# @return [undefined]
|
48
48
|
def mutate_child(index, &block)
|
@@ -55,7 +55,7 @@ module Mutest
|
|
55
55
|
|
56
56
|
# Emit delete child mutation
|
57
57
|
#
|
58
|
-
# @param [
|
58
|
+
# @param [Integer] index
|
59
59
|
#
|
60
60
|
# @return [undefined]
|
61
61
|
def delete_child(index)
|
@@ -66,7 +66,7 @@ module Mutest
|
|
66
66
|
|
67
67
|
# Emit updated child
|
68
68
|
#
|
69
|
-
# @param [
|
69
|
+
# @param [Integer] index
|
70
70
|
# @param [Parser::AST::Node] node
|
71
71
|
#
|
72
72
|
# @return [undefined]
|
@@ -140,7 +140,7 @@ module Mutest
|
|
140
140
|
#
|
141
141
|
# @param [Range] range
|
142
142
|
#
|
143
|
-
# @return [Enumerable<
|
143
|
+
# @return [Enumerable<Integer>]
|
144
144
|
def children_indices(range)
|
145
145
|
range.begin.upto(children.length + range.end)
|
146
146
|
end
|
@@ -78,7 +78,7 @@ module Mutest
|
|
78
78
|
|
79
79
|
# Multiple left hand side childs
|
80
80
|
#
|
81
|
-
# @return [Enumerable<Parser::AST::Node,
|
81
|
+
# @return [Enumerable<Parser::AST::Node, Integer>]
|
82
82
|
def mlhs_childs_with_index
|
83
83
|
children.each_with_index.select do |child, _index|
|
84
84
|
n_mlhs?(child)
|
@@ -3,7 +3,7 @@ module Mutest
|
|
3
3
|
class Node
|
4
4
|
class Literal < self
|
5
5
|
# Mutator for fixnum literals
|
6
|
-
class
|
6
|
+
class Integer < self
|
7
7
|
handle(:int)
|
8
8
|
|
9
9
|
private
|
@@ -29,7 +29,7 @@ module Mutest
|
|
29
29
|
def value
|
30
30
|
children.first
|
31
31
|
end
|
32
|
-
end #
|
32
|
+
end # Integer
|
33
33
|
end # Literal
|
34
34
|
end # Node
|
35
35
|
end # Mutator
|
data/lib/mutest/repository.rb
CHANGED
data/lib/mutest/result.rb
CHANGED
@@ -92,14 +92,14 @@ module Mutest
|
|
92
92
|
|
93
93
|
# Amount of mutations
|
94
94
|
#
|
95
|
-
# @return [
|
95
|
+
# @return [Integer]
|
96
96
|
def amount_mutations
|
97
97
|
env.mutations.length
|
98
98
|
end
|
99
99
|
|
100
100
|
# Amount of subjects
|
101
101
|
#
|
102
|
-
# @return [
|
102
|
+
# @return [Integer]
|
103
103
|
def amount_subjects
|
104
104
|
env.subjects.length
|
105
105
|
end
|
@@ -143,28 +143,28 @@ module Mutest
|
|
143
143
|
|
144
144
|
# Amount of mutations
|
145
145
|
#
|
146
|
-
# @return [
|
146
|
+
# @return [Integer]
|
147
147
|
def amount_mutation_results
|
148
148
|
mutation_results.length
|
149
149
|
end
|
150
150
|
|
151
151
|
# Amount of mutations
|
152
152
|
#
|
153
|
-
# @return [
|
153
|
+
# @return [Integer]
|
154
154
|
def amount_mutations
|
155
155
|
subject.mutations.length
|
156
156
|
end
|
157
157
|
|
158
158
|
# Number of killed mutations
|
159
159
|
#
|
160
|
-
# @return [
|
160
|
+
# @return [Integer]
|
161
161
|
def amount_mutations_killed
|
162
162
|
killed_mutation_results.length
|
163
163
|
end
|
164
164
|
|
165
165
|
# Number of alive mutations
|
166
166
|
#
|
167
|
-
# @return [
|
167
|
+
# @return [Integer]
|
168
168
|
def amount_mutations_alive
|
169
169
|
alive_mutation_results.length
|
170
170
|
end
|
data/lib/mutest/subject.rb
CHANGED
@@ -33,7 +33,7 @@ module Mutest
|
|
33
33
|
|
34
34
|
# Source line range
|
35
35
|
#
|
36
|
-
# @return [Range<
|
36
|
+
# @return [Range<Integer>]
|
37
37
|
def source_lines
|
38
38
|
expression = node.location.expression
|
39
39
|
expression.line..expression.source_buffer.decompose_position(expression.end_pos).first
|
@@ -42,7 +42,7 @@ module Mutest
|
|
42
42
|
|
43
43
|
# First source line
|
44
44
|
#
|
45
|
-
# @return [
|
45
|
+
# @return [Integer]
|
46
46
|
def source_line
|
47
47
|
source_lines.begin
|
48
48
|
end
|
data/lib/mutest/version.rb
CHANGED
data/mutest.gemspec
CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |gem|
|
|
24
24
|
|
25
25
|
gem.required_ruby_version = '>= 2.1'
|
26
26
|
|
27
|
-
gem.add_runtime_dependency('parser', '
|
27
|
+
gem.add_runtime_dependency('parser', '>= 2.5.0.1', '< 2.6')
|
28
28
|
gem.add_runtime_dependency('ast', '~> 2.2')
|
29
29
|
gem.add_runtime_dependency('diff-lcs', '~> 1.2')
|
30
30
|
gem.add_runtime_dependency('parallel', '~> 1.3')
|
@@ -38,5 +38,5 @@ Gem::Specification.new do |gem|
|
|
38
38
|
gem.add_runtime_dependency('equalizer', '~> 0.0.9')
|
39
39
|
gem.add_runtime_dependency('anima', '~> 0.3.0')
|
40
40
|
gem.add_runtime_dependency('concord', '~> 0.1.5')
|
41
|
-
gem.add_runtime_dependency('regexp_parser', '~> 0.4.
|
41
|
+
gem.add_runtime_dependency('regexp_parser', '~> 0.4.9')
|
42
42
|
end
|
data/spec/integrations.yml
CHANGED
data/spec/support/corpus.rb
CHANGED
@@ -123,7 +123,7 @@ module MutestSpec
|
|
123
123
|
#
|
124
124
|
# @param path [Pathname] path responsible for exception
|
125
125
|
#
|
126
|
-
# @return [
|
126
|
+
# @return [Integer] mutations generated
|
127
127
|
def count_mutations_and_check_errors(path)
|
128
128
|
relative_path = path.relative_path_from(repo_path)
|
129
129
|
|
@@ -144,7 +144,7 @@ module MutestSpec
|
|
144
144
|
#
|
145
145
|
# @raise [Exception] any error specified by integrations.yml
|
146
146
|
#
|
147
|
-
# @return [
|
147
|
+
# @return [Integer] number of mutations generated
|
148
148
|
def count_mutations(path)
|
149
149
|
node = Parser::CurrentRuby.parse(path.read)
|
150
150
|
|
@@ -181,7 +181,7 @@ module MutestSpec
|
|
181
181
|
|
182
182
|
# Number of parallel processes to use
|
183
183
|
#
|
184
|
-
# @return [
|
184
|
+
# @return [Integer]
|
185
185
|
def parallel_processes
|
186
186
|
if ENV.key?('CI')
|
187
187
|
CIRCLE_CI_CONTAINER_PROCESSES
|
@@ -207,7 +207,7 @@ module MutestSpec
|
|
207
207
|
# Print start progress
|
208
208
|
#
|
209
209
|
# @param [Pathname] path
|
210
|
-
# @param [
|
210
|
+
# @param [Integer] _index
|
211
211
|
#
|
212
212
|
# @return [undefined]
|
213
213
|
#
|
@@ -220,8 +220,8 @@ module MutestSpec
|
|
220
220
|
# Print finish progress
|
221
221
|
#
|
222
222
|
# @param [Pathname] path
|
223
|
-
# @param [
|
224
|
-
# @param [
|
223
|
+
# @param [Integer] _index
|
224
|
+
# @param [Integer] count
|
225
225
|
#
|
226
226
|
# @return [undefined]
|
227
227
|
#
|
data/spec/support/warnings.yml
CHANGED
@@ -3,3 +3,5 @@
|
|
3
3
|
- 'lib/parser/source/rewriter.rb:392: warning: assigned but unused variable - begin_pos'
|
4
4
|
- 'lib/regexp_parser/scanner.rb:1646: warning: assigned but unused variable - testEof'
|
5
5
|
- 'lib/regexp_parser/scanner.rb:1674: warning: assigned but unused variable - testEof'
|
6
|
+
- 'lib/parser/lexer.rb:10836: warning: assigned but unused variable - testEof'
|
7
|
+
- 'lib/regexp_parser/scanner.rb:1692: warning: assigned but unused variable - testEof'
|
@@ -225,12 +225,7 @@ RegexpSpec.expect_mapping(/(?x-: # comment
|
|
225
225
|
)/, :regexp_comment_free_space) do
|
226
226
|
s(:regexp_root_expression,
|
227
227
|
s(:regexp_options_group, {
|
228
|
-
|
229
|
-
i: false,
|
230
|
-
x: true,
|
231
|
-
d: false,
|
232
|
-
a: false,
|
233
|
-
u: false
|
228
|
+
x: true
|
234
229
|
},
|
235
230
|
s(:regexp_whitespace_free_space, ' '),
|
236
231
|
s(:regexp_comment_free_space, "# comment\n")))
|
@@ -478,12 +473,7 @@ RegexpSpec.expect_mapping(/(?i-:a)+/, :regexp_options_group) do
|
|
478
473
|
s(:regexp_greedy_one_or_more, 1, -1,
|
479
474
|
s(:regexp_options_group,
|
480
475
|
{
|
481
|
-
|
482
|
-
i: true,
|
483
|
-
x: false,
|
484
|
-
d: false,
|
485
|
-
a: false,
|
486
|
-
u: false
|
476
|
+
i: true
|
487
477
|
},
|
488
478
|
s(:regexp_literal_literal, 'a'))))
|
489
479
|
end
|
@@ -492,12 +482,7 @@ RegexpSpec.expect_mapping(/(?x-: #{"\n"} )/, :regexp_whitespace_free_space) do
|
|
492
482
|
s(:regexp_root_expression,
|
493
483
|
s(:regexp_options_group,
|
494
484
|
{
|
495
|
-
|
496
|
-
i: false,
|
497
|
-
x: true,
|
498
|
-
d: false,
|
499
|
-
a: false,
|
500
|
-
u: false
|
485
|
+
x: true
|
501
486
|
},
|
502
487
|
s(:regexp_whitespace_free_space, " \n ")))
|
503
488
|
end
|
@@ -14,7 +14,7 @@ RSpec.describe Mutest::Isolation::Fork do
|
|
14
14
|
let(:isolated_block) { -> { block_return } }
|
15
15
|
let(:marshal) { class_double(Marshal) }
|
16
16
|
let(:process) { class_double(Process) }
|
17
|
-
let(:pid) { class_double(
|
17
|
+
let(:pid) { class_double(0.class) }
|
18
18
|
let(:reader) { instance_double(IO, :reader) }
|
19
19
|
let(:stderr) { instance_double(IO, :stderr) }
|
20
20
|
let(:stdout) { instance_double(IO, :stdout) }
|
@@ -10,7 +10,7 @@ RSpec.describe Mutest::Loader, '.call' do
|
|
10
10
|
|
11
11
|
let(:path) { instance_double(Pathname, to_s: path_str) }
|
12
12
|
let(:path_str) { instance_double(String) }
|
13
|
-
let(:line) { instance_double(
|
13
|
+
let(:line) { instance_double(0.class) }
|
14
14
|
let(:kernel) { class_double(Kernel) }
|
15
15
|
let(:binding) { instance_double(Binding) }
|
16
16
|
let(:source) { instance_double(String) }
|
@@ -37,7 +37,7 @@ RSpec.describe Mutest::Parallel::Worker do
|
|
37
37
|
message_sequence.add(:worker, :stop)
|
38
38
|
end
|
39
39
|
|
40
|
-
let(:index) { instance_double(
|
40
|
+
let(:index) { instance_double(0.class) }
|
41
41
|
let(:job_result) { Mutest::Parallel::JobResult.new(job: job, payload: result_payload) }
|
42
42
|
let(:job) { Mutest::Parallel::Job.new(index: index, payload: payload) }
|
43
43
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mutest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Gollahon
|
@@ -9,28 +9,28 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2018-04-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: parser
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "~>"
|
19
|
-
- !ruby/object:Gem::Version
|
20
|
-
version: 2.3.1
|
21
18
|
- - ">="
|
22
19
|
- !ruby/object:Gem::Version
|
23
|
-
version: 2.
|
20
|
+
version: 2.5.0.1
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '2.6'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
27
|
requirements:
|
28
|
-
- - "~>"
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: 2.3.1
|
31
28
|
- - ">="
|
32
29
|
- !ruby/object:Gem::Version
|
33
|
-
version: 2.
|
30
|
+
version: 2.5.0.1
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.6'
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: ast
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -219,14 +219,14 @@ dependencies:
|
|
219
219
|
requirements:
|
220
220
|
- - "~>"
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version: 0.4.
|
222
|
+
version: 0.4.9
|
223
223
|
type: :runtime
|
224
224
|
prerelease: false
|
225
225
|
version_requirements: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
227
|
- - "~>"
|
228
228
|
- !ruby/object:Gem::Version
|
229
|
-
version: 0.4.
|
229
|
+
version: 0.4.9
|
230
230
|
description: Mutation testing for ruby
|
231
231
|
email:
|
232
232
|
- johncbackus@gmail.com
|