flatware 2.3.2 → 2.3.4

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: e4e66ab27a1e76fc9ca919c9b9de35006f88317cb6b5bf6f1b136b1b7eabc368
4
- data.tar.gz: d16310a202a40d0e1a4147d31e1c97c8cc590f5d1b009b2576cefb9e79e47735
3
+ metadata.gz: 8b5012bc6cb30cd87005f9be4ef061a831e1e672bd06ac6ddc4604fb679afea3
4
+ data.tar.gz: 68784b29ef2a53f4227cfd486f0d27b0e09efd43ab91799472b787d22c8979e3
5
5
  SHA512:
6
- metadata.gz: 3e1b6e794216a3724966e1465990d89a6d8d33f2ef2d58248b7ccb35e16451ad3f675c9b4f630135b9d4fbc61a75e4be32b844ee8758f1e9975dc80ffd13b32a
7
- data.tar.gz: 341abe2ae2e05e2105f3de801fb8e8bd044028bc75a21529d4f5b2d1aab20b943d0b4d860cfff432e1f234d91dbd662db23c664543e3dd2ad2b8b2b95d315738
6
+ metadata.gz: 9d240f28c1b247564602dc94aa87f2f02be56962d8c29323a2f6f668ede4d2cc53827e0a8b411e9bef0f104afb806f3448d4ab9fe8b1ce746c2899ce5d3ac78b
7
+ data.tar.gz: 993e5baa9022d029190b56a094c75e8dd4755fc9be59ad31093f75f3b6179bb1b15694d6e82e0a98a8b8f66a42ea4032f043a65568abba5cfacf88c049da5a63
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.4"
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.4
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: 2025-01-03 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
@@ -63,14 +77,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
77
  version: '2.6'
64
78
  - - "<"
65
79
  - !ruby/object:Gem::Version
66
- version: '3.4'
80
+ version: '3.5'
67
81
  required_rubygems_version: !ruby/object:Gem::Requirement
68
82
  requirements:
69
83
  - - ">="
70
84
  - !ruby/object:Gem::Version
71
85
  version: '0'
72
86
  requirements: []
73
- rubygems_version: 3.4.1
87
+ rubygems_version: 3.5.22
74
88
  signing_key:
75
89
  specification_version: 4
76
90
  summary: A distributed rspec and cucumber runner