turbo_tests2 3.0.0 → 3.1.1
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +78 -1
- data/CONTRIBUTING.md +37 -0
- data/LICENSE.md +22 -0
- data/README.md +22 -38
- data/lib/turbo_tests/cli.rb +65 -10
- data/lib/turbo_tests/json_rows_formatter.rb +64 -18
- data/lib/turbo_tests/reporter.rb +30 -9
- data/lib/turbo_tests/runner.rb +99 -31
- data/lib/turbo_tests/shim.rb +10 -1
- data/lib/turbo_tests/version.rb +1 -1
- data/lib/turbo_tests.rb +7 -5
- data/lib/turbo_tests2/rspec/shared_contexts/simplecov_spawn.rb +6 -2
- data/sig/turbo_tests/version.rbs +0 -1
- data.tar.gz.sig +0 -0
- metadata +23 -16
- metadata.gz.sig +0 -0
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: turbo_tests2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Illia
|
|
@@ -110,6 +110,9 @@ dependencies:
|
|
|
110
110
|
- - "~>"
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
112
|
version: '2.0'
|
|
113
|
+
- - ">="
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: 2.0.7
|
|
113
116
|
type: :development
|
|
114
117
|
prerelease: false
|
|
115
118
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -117,6 +120,9 @@ dependencies:
|
|
|
117
120
|
- - "~>"
|
|
118
121
|
- !ruby/object:Gem::Version
|
|
119
122
|
version: '2.0'
|
|
123
|
+
- - ">="
|
|
124
|
+
- !ruby/object:Gem::Version
|
|
125
|
+
version: 2.0.7
|
|
120
126
|
- !ruby/object:Gem::Dependency
|
|
121
127
|
name: bundler-audit
|
|
122
128
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -194,7 +200,7 @@ dependencies:
|
|
|
194
200
|
version: '2.0'
|
|
195
201
|
- - ">="
|
|
196
202
|
- !ruby/object:Gem::Version
|
|
197
|
-
version: 2.0.
|
|
203
|
+
version: 2.0.2
|
|
198
204
|
type: :development
|
|
199
205
|
prerelease: false
|
|
200
206
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -204,7 +210,7 @@ dependencies:
|
|
|
204
210
|
version: '2.0'
|
|
205
211
|
- - ">="
|
|
206
212
|
- !ruby/object:Gem::Version
|
|
207
|
-
version: 2.0.
|
|
213
|
+
version: 2.0.2
|
|
208
214
|
- !ruby/object:Gem::Dependency
|
|
209
215
|
name: ruby-progressbar
|
|
210
216
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -245,24 +251,23 @@ dependencies:
|
|
|
245
251
|
requirements:
|
|
246
252
|
- - "~>"
|
|
247
253
|
- !ruby/object:Gem::Version
|
|
248
|
-
version: '
|
|
254
|
+
version: '2.0'
|
|
249
255
|
- - ">="
|
|
250
256
|
- !ruby/object:Gem::Version
|
|
251
|
-
version:
|
|
257
|
+
version: 2.0.1
|
|
252
258
|
type: :development
|
|
253
259
|
prerelease: false
|
|
254
260
|
version_requirements: !ruby/object:Gem::Requirement
|
|
255
261
|
requirements:
|
|
256
262
|
- - "~>"
|
|
257
263
|
- !ruby/object:Gem::Version
|
|
258
|
-
version: '
|
|
264
|
+
version: '2.0'
|
|
259
265
|
- - ">="
|
|
260
266
|
- !ruby/object:Gem::Version
|
|
261
|
-
version:
|
|
262
|
-
description: "\U0001F680
|
|
267
|
+
version: 2.0.1
|
|
268
|
+
description: "\U0001F680 turbo_tests2` is a drop-in replacement for `serpapi/turbo_tests`
|
|
263
269
|
and `grosser/parallel_tests` with incremental summarized output. Source code of
|
|
264
|
-
`turbo_test2` gem is based on Discourse and Rubygems work in this area (see README
|
|
265
|
-
file of the source repository)."
|
|
270
|
+
`turbo_test2` gem is based on Discourse and Rubygems work in this area (see README.md)."
|
|
266
271
|
email:
|
|
267
272
|
- floss@galtzo.com
|
|
268
273
|
executables:
|
|
@@ -274,6 +279,7 @@ extra_rdoc_files:
|
|
|
274
279
|
- CODE_OF_CONDUCT.md
|
|
275
280
|
- CONTRIBUTING.md
|
|
276
281
|
- FUNDING.md
|
|
282
|
+
- LICENSE.md
|
|
277
283
|
- README.md
|
|
278
284
|
- RUBOCOP.md
|
|
279
285
|
- SECURITY.md
|
|
@@ -283,6 +289,7 @@ files:
|
|
|
283
289
|
- CODE_OF_CONDUCT.md
|
|
284
290
|
- CONTRIBUTING.md
|
|
285
291
|
- FUNDING.md
|
|
292
|
+
- LICENSE.md
|
|
286
293
|
- README.md
|
|
287
294
|
- RUBOCOP.md
|
|
288
295
|
- SECURITY.md
|
|
@@ -304,10 +311,10 @@ licenses:
|
|
|
304
311
|
- MIT
|
|
305
312
|
metadata:
|
|
306
313
|
homepage_uri: https://turbo-tests2.galtzo.com
|
|
307
|
-
source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.
|
|
308
|
-
changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.
|
|
314
|
+
source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.1.1
|
|
315
|
+
changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.1.1/CHANGELOG.md
|
|
309
316
|
bug_tracker_uri: https://github.com/galtzo-floss/turbo_tests2/issues
|
|
310
|
-
documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.
|
|
317
|
+
documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.1.1
|
|
311
318
|
funding_uri: https://github.com/sponsors/pboling
|
|
312
319
|
wiki_uri: https://github.com/galtzo-floss/turbo_tests2/wiki
|
|
313
320
|
news_uri: https://www.railsbling.com/tags/turbo_tests2
|
|
@@ -315,7 +322,7 @@ metadata:
|
|
|
315
322
|
rubygems_mfa_required: 'true'
|
|
316
323
|
rdoc_options:
|
|
317
324
|
- "--title"
|
|
318
|
-
- "turbo_tests2 - \U0001F680
|
|
325
|
+
- "turbo_tests2 - \U0001F680 turbo_tests2` is a drop-in replacement for `serpapi/turbo_tests`
|
|
319
326
|
and `grosser/parallel_tests` with incremental summarized output"
|
|
320
327
|
- "--main"
|
|
321
328
|
- README.md
|
|
@@ -337,8 +344,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
337
344
|
- !ruby/object:Gem::Version
|
|
338
345
|
version: '0'
|
|
339
346
|
requirements: []
|
|
340
|
-
rubygems_version: 4.0.
|
|
347
|
+
rubygems_version: 4.0.10
|
|
341
348
|
specification_version: 4
|
|
342
|
-
summary: "\U0001F680
|
|
349
|
+
summary: "\U0001F680 turbo_tests2` is a drop-in replacement for `serpapi/turbo_tests`
|
|
343
350
|
and `grosser/parallel_tests` with incremental summarized output"
|
|
344
351
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|