mutant 0.9.10 → 0.9.11
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 +6 -2
- data/Gemfile.lock +1 -1
- data/lib/mutant/mutator/node/literal/range.rb +5 -2
- data/lib/mutant/version.rb +1 -1
- data/meta/range.rb +0 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5cc24215454715aa8d55ed5f972ca4b5ab6c297bccf35e64834f73de7cc914f0
|
4
|
+
data.tar.gz: c7b524c6eaa3fe49cce08b1b6ba9c94d379f090f6b75cc6ca38450fed46f101b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d79ce339c29ff4b9ec958e9405281086d1a56daa515a2b154d593ef98338373b6bcbda48f1a4ce924a186d3bcdbff6f4775b46e279da3aa39b1dc8e00525d097
|
7
|
+
data.tar.gz: 1d69b7b466b6004461e9a6cd862a3c211a3e9b17bb36ddd4e00e6b8fffb32d4b0b4f2f9dbff9cc8819b342682eb564d5f07fc7de1b742b15f14a9575ef5fe4e2
|
data/Changelog.md
CHANGED
@@ -1,10 +1,14 @@
|
|
1
|
-
# v0.9.
|
1
|
+
# v0.9.11 2020-08-25
|
2
|
+
|
3
|
+
* Remove mutation to equivalent semantics on endless ranges [#1036](https://github.com/mbj/mutant/pull/1036).
|
4
|
+
|
5
|
+
# v0.9.10 2020-08-25
|
2
6
|
|
3
7
|
* Remove bounds to allow `diff-lcs 1.4.x` [#1032](https://github.com/mbj/mutant/pull/1032).
|
4
8
|
* Fix crash on endless ranges [#1026](https://github.com/mbj/mutant/pull/1026).
|
5
9
|
* Fix memoized subjects to preserve freezer option [#973](https://github.com/mbj/mutant/pull/973).
|
6
10
|
|
7
|
-
# v0.9.9 2020-
|
11
|
+
# v0.9.9 2020-08-25
|
8
12
|
|
9
13
|
+ Add support for mutating methods inside eigenclasses `class <<`. [#1009](https://github.com/mbj/mutant/pull/1009)
|
10
14
|
- Remove `<` -> `<=` and `>` -> `>=` mutations as non canonical. [#1020](https://github.com/mbj/mutant/pull/1020)
|
data/Gemfile.lock
CHANGED
@@ -21,9 +21,12 @@ module Mutant
|
|
21
21
|
|
22
22
|
def dispatch
|
23
23
|
emit_singletons
|
24
|
-
emit_inverse
|
25
24
|
emit_lower_bound_mutations
|
26
|
-
|
25
|
+
|
26
|
+
return unless upper_bound
|
27
|
+
|
28
|
+
emit_inverse
|
29
|
+
emit_upper_bound_mutations
|
27
30
|
end
|
28
31
|
|
29
32
|
def emit_inverse
|
data/lib/mutant/version.rb
CHANGED
data/meta/range.rb
CHANGED
@@ -45,7 +45,6 @@ unless RUBY_VERSION.start_with?('2.5')
|
|
45
45
|
singleton_mutations
|
46
46
|
mutation '-1...'
|
47
47
|
mutation '0...'
|
48
|
-
mutation '1..'
|
49
48
|
mutation '2...'
|
50
49
|
mutation 'nil...'
|
51
50
|
mutation 'self...'
|
@@ -57,7 +56,6 @@ unless RUBY_VERSION.start_with?('2.5')
|
|
57
56
|
singleton_mutations
|
58
57
|
mutation '-1..'
|
59
58
|
mutation '0..'
|
60
|
-
mutation '1...'
|
61
59
|
mutation '2..'
|
62
60
|
mutation 'nil..'
|
63
61
|
mutation 'self..'
|