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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b32df842875e371217d7a7aa82aa04d270a19d7
4
- data.tar.gz: 75b286bc4b61933d1bb914217cdf47d5b1bf6de6
3
+ metadata.gz: 74293503543a600402c0fb361fb34a312c720963
4
+ data.tar.gz: d9671304f38ede055bfcda0fb7b618c7ef7401f6
5
5
  SHA512:
6
- metadata.gz: ed8b727431873fcfb0fd9094c4e6db98f39b7c969f343e2078debe08ab25ea3d8c9175d854cf333ee24055d4db77b03eba6e3714fdd50c98ec9f216891e0b83c
7
- data.tar.gz: 982ed60c4c39836fc4cecffac94df77cd2d02a4ac1101704fe197761ad12b1acf3e403ad58ae9d84e0c6141c1429a7bfcc6a4361da152a58de5e9957ea67450a
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.8)
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.1.0)
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.7.2)
124
- mini_portile2 (~> 2.1.0)
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.0.pre.2
232
+ 1.16.1
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MutatorRails
4
- VERSION = '0.1.8'
4
+ VERSION = '0.1.9'
5
5
  end
@@ -10,7 +10,7 @@ if Rails.env.development? || Rails.env.test?
10
10
 
11
11
  namespace :mutator do
12
12
  desc 'Run whole mutation process'
13
- task all: %i[files analyze statistics cleanup] do
13
+ task all: %i[files cleanup analyze statistics] do
14
14
  puts 'all processed!'
15
15
  end
16
16
  end
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.8
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-05 00:00:00.000000000 Z
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