crude-mutant 0.3.2 → 0.3.3

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
  SHA256:
3
- metadata.gz: add561da268ebca79bacf14f7f94e4e90760931b6364e03c62775f746c98b75a
4
- data.tar.gz: f06c64e350c7c1e94a3ac4f4f11f3f9c8b633e2b0ea9ce63b95ad90c87becea7
3
+ metadata.gz: a7cb6e26e7487f11fef12c86e1705957f954d23d15d58b2b7fe37965a3d0ddb7
4
+ data.tar.gz: d9b30369f2710c39fc3d26e4698a3413e0e7af85d419bc208d74df9bb02c0770
5
5
  SHA512:
6
- metadata.gz: 110585c4e5d4955ca2bb657c9b0224b14929db6ccf9aef26c69666ec9a96a76c9104fb2d6bc8a4c583fea23c0bee1b055c1a0b6890c287b3ec32d4c8df53b4f3
7
- data.tar.gz: c7f56390105e301bf062d78a6775e482d4c977c6b8bf35030da24375c1189aaa17ff91373b041d50e63050c964a3c7120873de34237a9f47f1e5f6072d22b55c
6
+ metadata.gz: 92b85be3db7cff7c1edf375034bc1923357493c19017319ee04323b3c337e30f74a835c115f7a73a4f9d2c5721ff7b5ccb75d8b4ad775d5b37cb34b5dd5aa8c4
7
+ data.tar.gz: baf22fb3991dc424b94d88d4e95b6ba685cc73b82bf0a1485b392e9659c291c8510ec8be2f71677ecd14895d1a72366ec0599af32e634535125a9f2b9d77919b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- crude-mutant (0.3.2)
4
+ crude-mutant (0.3.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -10,7 +10,7 @@ module CrudeMutant
10
10
  JSON.dump({
11
11
  result.file_path => {
12
12
  passed_lines: result.run_results.select(&:success?).map(&:line_number),
13
- failed_lines: result.run_results.select(&:reject?).map(&:line_number),
13
+ failed_lines: result.run_results.reject(&:success?).map(&:line_number),
14
14
  }
15
15
  }),
16
16
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CrudeMutant
4
- VERSION = "0.3.2"
4
+ VERSION = "0.3.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crude-mutant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kelly Sutton