crude-mutant 0.5.2 → 0.5.3

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
  SHA256:
3
- metadata.gz: dc39cdbb8f12d418335ef7be0840069b20c9e9f9bcf258de6390458c61300195
4
- data.tar.gz: 14500f74cc9d05bb5d802753191ba95c59082dfc5cb65a687e24ccc23c18c458
3
+ metadata.gz: 48afe3ed22dad22ac49315038c73c7323a5c1804db9fbbdd50f1d3cf24aa86f3
4
+ data.tar.gz: c71ad154397aea0a4fd7196b84036dd6d774b7ee34818556ed9638f6467f91ce
5
5
  SHA512:
6
- metadata.gz: 95d3a08fbada1600ab9797271f76b236ad3684483ee504c2f3063ae46e4fdce7e6730f7f148ca95cf352873fc9a2e881747a6e00f415a20e79cbdd26f466ec65
7
- data.tar.gz: 0c48547e183450ec2735bc9fb900703a9581d08935337cd86c90e83589a69f0c77aa134329368ca3a01f7370a81e19409431c6e0113025be37d5d9d415f092ac
6
+ metadata.gz: 551c35d3f62f8196fcbf9167555f50f4459e488f8f0dfea356f2f181e87c7bed4c207907ba652b21a5e106c2c51346b772e5817e6f942665ccad9911eef188ba
7
+ data.tar.gz: 0f821b776740cf7cd37d57ddbdb2b6e97788c097549b1f14d88190f3f0cefb768a8a5b24bae531a56c63b6bddb3cb1f50b3b65ad0b3f2754d5a87bb0a6dd2640
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- crude-mutant (0.5.2)
4
+ crude-mutant (0.5.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/exe/cm CHANGED
@@ -21,11 +21,11 @@ OptionParser.new do |opts|
21
21
  end
22
22
 
23
23
  opts.on("-sSECTION", "--section=SECTION", "Number of current section when parallelizing") do |s|
24
- args.section = s
24
+ args.section = s.to_i
25
25
  end
26
26
 
27
27
  opts.on("-tSECTION_TOTAL", "--section_total=SECTION_TOTAL", "Number of total sections when parallelizing") do |s|
28
- args.section_total = s
28
+ args.section_total = s.to_i
29
29
  end
30
30
 
31
31
  opts.on("-cTEST_COMMAND", "--test_command=TEST_COMMAND", "Test command to run") do |t|
@@ -21,11 +21,11 @@ OptionParser.new do |opts|
21
21
  end
22
22
 
23
23
  opts.on("-sSECTION", "--section=SECTION", "Number of current section when parallelizing") do |s|
24
- args.section = s
24
+ args.section = s.to_i
25
25
  end
26
26
 
27
27
  opts.on("-tSECTION_TOTAL", "--section_total=SECTION_TOTAL", "Number of total sections when parallelizing") do |s|
28
- args.section_total = s
28
+ args.section_total = s.to_i
29
29
  end
30
30
 
31
31
  opts.on("-cTEST_COMMAND", "--test_command=TEST_COMMAND", "Test command to run") do |t|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CrudeMutant
4
- VERSION = "0.5.2"
4
+ VERSION = "0.5.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.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kelly Sutton