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 +4 -4
- data/README.md +4 -1
- data/lib/flatware/cli.rb +2 -1
- data/lib/flatware/version.rb +1 -1
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b5012bc6cb30cd87005f9be4ef061a831e1e672bd06ac6ddc4604fb679afea3
|
4
|
+
data.tar.gz: 68784b29ef2a53f4227cfd486f0d27b0e09efd43ab91799472b787d22c8979e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
data/lib/flatware/version.rb
CHANGED
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.
|
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:
|
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.
|
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.
|
87
|
+
rubygems_version: 3.5.22
|
74
88
|
signing_key:
|
75
89
|
specification_version: 4
|
76
90
|
summary: A distributed rspec and cucumber runner
|