flatware 2.3.2 → 2.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: e4e66ab27a1e76fc9ca919c9b9de35006f88317cb6b5bf6f1b136b1b7eabc368
4
- data.tar.gz: d16310a202a40d0e1a4147d31e1c97c8cc590f5d1b009b2576cefb9e79e47735
3
+ metadata.gz: 26a331171fb4022830f008910834d7d0e2b7e7d7d6c449454c30dad6cff41900
4
+ data.tar.gz: 1652107a2aac23b8113d564629b064fb57ec58a3c7810151e7863794d8904cfc
5
5
  SHA512:
6
- metadata.gz: 3e1b6e794216a3724966e1465990d89a6d8d33f2ef2d58248b7ccb35e16451ad3f675c9b4f630135b9d4fbc61a75e4be32b844ee8758f1e9975dc80ffd13b32a
7
- data.tar.gz: 341abe2ae2e05e2105f3de801fb8e8bd044028bc75a21529d4f5b2d1aab20b943d0b4d860cfff432e1f234d91dbd662db23c664543e3dd2ad2b8b2b95d315738
6
+ metadata.gz: 6bc54319c7c78a32dc5dd2f4ce05c4f41af153dcbbc49c795420deb4f156859602caf153028d1bd432bedfda2888207264c9501c370830058ec57790cfd3bede
7
+ data.tar.gz: 658c8ea788aea4756573727fff5dde2513c9cdde8bd60e960b31bd4e70b3f49e718d177ed7120fb25a17af2fa15660723f2b523c04761b20a7328e61caa10ac7
data/README.md CHANGED
@@ -40,7 +40,10 @@ $ flatware rspec
40
40
 
41
41
  The rspec runner can balance worker loads, making your suite even faster.
42
42
 
43
- It forms balanced groups of spec files according to their last run times, if you've set `example_status_persistence_file_path` [in your RSpec config](https://relishapp.com/rspec/rspec-core/v/3-8/docs/command-line/only-failures).
43
+ It forms balanced groups of spec files according to their last run times, if
44
+ you've set `example_status_persistence_file_path` in your [RSpec config].
45
+
46
+ [RSpec config]: https://rspec.info/features/3-13/rspec-core/command-line/only-failures/
44
47
 
45
48
  For this to work the configuration option must be loaded before any specs are run. The `.rspec` file is one way to achieve this:
46
49
 
data/lib/flatware/cli.rb CHANGED
@@ -41,7 +41,8 @@ module Flatware
41
41
  exec({ 'TEST_ENV_NUMBER' => i.to_s }, command)
42
42
  end
43
43
  end
44
- Process.waitall
44
+ success = Process.waitall.all? { |_pid, status| status.success? }
45
+ exit success ? 0 : 1
45
46
  end
46
47
 
47
48
  desc 'clear', 'kills all flatware processes'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Flatware
4
- VERSION = '2.3.2'
4
+ VERSION = '2.3.3'
5
5
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flatware
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Dunn
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-17 00:00:00.000000000 Z
11
+ date: 2024-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: drb
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: thor
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -70,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
84
  - !ruby/object:Gem::Version
71
85
  version: '0'
72
86
  requirements: []
73
- rubygems_version: 3.4.1
87
+ rubygems_version: 3.5.17
74
88
  signing_key:
75
89
  specification_version: 4
76
90
  summary: A distributed rspec and cucumber runner