mutator_rails 0.1.9 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74293503543a600402c0fb361fb34a312c720963
4
- data.tar.gz: d9671304f38ede055bfcda0fb7b618c7ef7401f6
3
+ metadata.gz: ec26663a002962c4d61f81cc11a47bc3157ffc19
4
+ data.tar.gz: c3d21eab3fedb2e4e78ad225b569c040f0de3263
5
5
  SHA512:
6
- metadata.gz: e8ad425c3131b6d16019ad173e8c5d76bf4554d8ff0d26825d2005b7b7e66e18a79ba4be5a9676573ec604bd47e131409f9e2eb1097e9db6d0cdb61446d835c6
7
- data.tar.gz: e34d1e1e0e7bae0394c19b65a1c12f402e0c0ddec60bb5d5b897dc680026c73bfd50cba6363889c1edb19e64f5128748caa2387ab7ab109f187dad259b8f8ba7
6
+ metadata.gz: dc2edb6a53fc33c9e7d26282e2d1820551ce8fe371eb760d92092241e90e87d34a1951b58cd12d34892e0e869b71d0418c204cd11a00d451e890c3d47b087bc0
7
+ data.tar.gz: 21da26b827b7c5be909e73892d17ae66bf96c84575e1d78377ea298adb09a10e1547e5e92d9d35c5a2eab09dca2443f0a377c57e60f5572a3c629661a499598a
data/CHANGELOG.md CHANGED
@@ -12,24 +12,33 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
12
12
 
13
13
  ### Removed
14
14
 
15
- ## [20180126] - 2018-01-26
15
+ ## [0.1.10] - 2018-04-13
16
+
17
+ ### Added
18
+
19
+ ### Changed
20
+
21
+ - Updated Loofah and Nokogiri gems to address a security vulnerability.
22
+ [I45](https://github.com/dinj-oss/mutator_rails/issues/45)
23
+
24
+ ### Removed
25
+
26
+ ## [0.1.9] - 2018-01-26
27
+
28
+ ### Added
16
29
 
17
30
  - Added this changelog.
18
- [I41](https://github.com/dinj-oss/mutator_rails/issues/41) [PR40]
31
+ [I41](https://github.com/dinj-oss/mutator_rails/issues/41) [PR40](https://github.com/dinj-oss/mutator_rails/pull/40)
19
32
 
20
33
  - Updated Nokogiri gem to 1.8.1 to address a security vulnerability.
21
- [I38](https://github.com/dinj-oss/mutator_rails/issues/38) [PR42]
34
+ [I38](https://github.com/dinj-oss/mutator_rails/issues/38) [PR42](https://github.com/dinj-oss/mutator_rails/pull/42)
35
+
22
36
 
23
37
  ### Changed
24
38
 
25
39
  - Altered the order of the tasks run under `mutator:all` so that the `cleanup`
26
40
  phase occurs before the `analyze` phase.
27
- [I39](https://github.com/dinj-oss/mutator_rails/issues/39) [PR44]
41
+ [I39](https://github.com/dinj-oss/mutator_rails/issues/39) [PR44](https://github.com/dinj-oss/mutator_rails/pull/44)
28
42
 
29
43
  ### Removed
30
44
 
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.9)
4
+ mutator_rails (0.1.10)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -68,6 +68,7 @@ GEM
68
68
  adamantium (~> 0.2.0)
69
69
  equalizer (~> 0.0.9)
70
70
  concurrent-ruby (1.0.5)
71
+ crass (1.0.4)
71
72
  descendants_tracker (0.0.4)
72
73
  thread_safe (~> 0.3, >= 0.3.1)
73
74
  diff-lcs (1.3)
@@ -79,7 +80,8 @@ GEM
79
80
  i18n (0.8.1)
80
81
  ice_nine (0.11.2)
81
82
  json (2.1.0)
82
- loofah (2.0.3)
83
+ loofah (2.2.2)
84
+ crass (~> 1.0.2)
83
85
  nokogiri (>= 1.5.9)
84
86
  mail (2.6.5)
85
87
  mime-types (>= 1.16, < 4)
@@ -120,7 +122,7 @@ GEM
120
122
  mutant (~> 0.8.14)
121
123
  rspec-core (>= 3.4.0, < 3.7.0)
122
124
  nio4r (2.0.0)
123
- nokogiri (1.8.1)
125
+ nokogiri (1.8.2)
124
126
  mini_portile2 (~> 2.3.0)
125
127
  parallel (1.11.2)
126
128
  parser (2.4.0.0)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MutatorRails
4
- VERSION = '0.1.9'
4
+ VERSION = '0.1.10'
5
5
  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.9
4
+ version: 0.1.10
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-27 00:00:00.000000000 Z
12
+ date: 2018-04-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler