mutator_rails 0.1.8 → 0.1.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 +35 -0
- data/Gemfile.lock +5 -5
- data/lib/mutator_rails/version.rb +1 -1
- data/lib/tasks/mutator/mutator.rake +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74293503543a600402c0fb361fb34a312c720963
|
|
4
|
+
data.tar.gz: d9671304f38ede055bfcda0fb7b618c7ef7401f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8ad425c3131b6d16019ad173e8c5d76bf4554d8ff0d26825d2005b7b7e66e18a79ba4be5a9676573ec604bd47e131409f9e2eb1097e9db6d0cdb61446d835c6
|
|
7
|
+
data.tar.gz: e34d1e1e0e7bae0394c19b65a1c12f402e0c0ddec60bb5d5b897dc680026c73bfd50cba6363889c1edb19e64f5128748caa2387ab7ab109f187dad259b8f8ba7
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
### Removed
|
|
14
|
+
|
|
15
|
+
## [20180126] - 2018-01-26
|
|
16
|
+
|
|
17
|
+
- Added this changelog.
|
|
18
|
+
[I41](https://github.com/dinj-oss/mutator_rails/issues/41) [PR40]
|
|
19
|
+
|
|
20
|
+
- Updated Nokogiri gem to 1.8.1 to address a security vulnerability.
|
|
21
|
+
[I38](https://github.com/dinj-oss/mutator_rails/issues/38) [PR42]
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Altered the order of the tasks run under `mutator:all` so that the `cleanup`
|
|
26
|
+
phase occurs before the `analyze` phase.
|
|
27
|
+
[I39](https://github.com/dinj-oss/mutator_rails/issues/39) [PR44]
|
|
28
|
+
|
|
29
|
+
### Removed
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
[PR40]: https://github.com/dinj-oss/mutator_rails/pull/40
|
|
34
|
+
[PR42]: https://github.com/dinj-oss/mutator_rails/pull/42
|
|
35
|
+
[PR44]: https://github.com/dinj-oss/mutator_rails/pull/44
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mutator_rails (0.1.
|
|
4
|
+
mutator_rails (0.1.9)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
@@ -89,7 +89,7 @@ GEM
|
|
|
89
89
|
mime-types (3.1)
|
|
90
90
|
mime-types-data (~> 3.2015)
|
|
91
91
|
mime-types-data (3.2016.0521)
|
|
92
|
-
mini_portile2 (2.
|
|
92
|
+
mini_portile2 (2.3.0)
|
|
93
93
|
minitest (5.10.2)
|
|
94
94
|
morpher (0.2.6)
|
|
95
95
|
abstract_type (~> 0.0.7)
|
|
@@ -120,8 +120,8 @@ GEM
|
|
|
120
120
|
mutant (~> 0.8.14)
|
|
121
121
|
rspec-core (>= 3.4.0, < 3.7.0)
|
|
122
122
|
nio4r (2.0.0)
|
|
123
|
-
nokogiri (1.
|
|
124
|
-
mini_portile2 (~> 2.
|
|
123
|
+
nokogiri (1.8.1)
|
|
124
|
+
mini_portile2 (~> 2.3.0)
|
|
125
125
|
parallel (1.11.2)
|
|
126
126
|
parser (2.4.0.0)
|
|
127
127
|
ast (~> 2.2)
|
|
@@ -229,4 +229,4 @@ DEPENDENCIES
|
|
|
229
229
|
rspec_junit_formatter
|
|
230
230
|
|
|
231
231
|
BUNDLED WITH
|
|
232
|
-
1.16.
|
|
232
|
+
1.16.1
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mutator_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Chambers
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-01-
|
|
12
|
+
date: 2018-01-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -234,6 +234,7 @@ files:
|
|
|
234
234
|
- ".gitignore"
|
|
235
235
|
- ".rspec"
|
|
236
236
|
- ".ruby-version"
|
|
237
|
+
- CHANGELOG.md
|
|
237
238
|
- CODE_OF_CONDUCT.md
|
|
238
239
|
- Gemfile
|
|
239
240
|
- Gemfile.lock
|