turbo_tests2 3.2.1 → 3.2.2
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 +4 -2
- data/CHANGELOG.md +22 -1
- data/exe/turbo_tests2 +1 -1
- data/lib/turbo_tests/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +28 -8
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4b62550813a3e7662e0aef29a0a881fbd3d20852290aa6a1383de126e72c2fa
|
|
4
|
+
data.tar.gz: 3164bc7cd37b3be39086244075f444e916dfc05e92eeb746a51d09e5ab22d0d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3bbbc2ccf13b86e877b0098662ff821575cb7ca6518018fdb7ff3cb82cf81c6402cf41646cce8b4465c4d44a5c2c8a307650303b0b958581279616b5cb2c2635
|
|
7
|
+
data.tar.gz: 189974b5124e63b697ae2f21445ff5fd0f2db690e65eab5b3768cced83e8836ead964461cb155c7d3c4da0a83c2514c46e9f9d5b74fd5dbf6b40cd9dc695478d
|
checksums.yaml.gz.sig
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
��?��B@�33�g�K�TᎰ�f~)R�D��_��E�Hn��c��X:�����,�<+�b�Cl�
|
|
2
|
+
��RLm��'N���N[���M*�D#�/!�f1��;��OWn��<��rB�.���|���~*Z�v�����ZyJ2P��G�v?�#`}
|
|
3
|
+
I�x�W����OV3���x&�s!&�7�ࡴ_�AY)w�P��CO��\�^�
|
|
4
|
+
|��!�$<@�4�.���PN� z-փ��p
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,25 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [3.2.2] - 2026-07-25
|
|
34
|
+
|
|
35
|
+
- TAG: [v3.2.2][3.2.2t]
|
|
36
|
+
- COVERAGE: 96.88% -- 869/897 lines in 10 files
|
|
37
|
+
- BRANCH COVERAGE: 84.44% -- 217/257 branches in 10 files
|
|
38
|
+
- 34.69% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- The `turbo_tests2` executable startup header is now shown only when
|
|
43
|
+
`--verbose` is passed; `-v` and `--version` still print just the executable
|
|
44
|
+
version and exit.
|
|
45
|
+
|
|
46
|
+
- kettle-jem-template-20260725-002 - Generated gemspec templates now include
|
|
47
|
+
`anonymous_loader` as a development dependency, and version specs use it to
|
|
48
|
+
execute generated `version.rb` files for coverage without redefining package
|
|
49
|
+
constants. Managed version specs are removed when `version_gem` is disabled
|
|
50
|
+
or incompatible with the project's runtime Ruby floor.
|
|
51
|
+
|
|
33
52
|
## [3.2.1] - 2026-07-25
|
|
34
53
|
|
|
35
54
|
- TAG: [v3.2.1][3.2.1t]
|
|
@@ -396,7 +415,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
396
415
|
|
|
397
416
|
- Initial release
|
|
398
417
|
|
|
399
|
-
[Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.
|
|
418
|
+
[Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.2...HEAD
|
|
419
|
+
[3.2.2]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.1...v3.2.2
|
|
420
|
+
[3.2.2t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.2.2
|
|
400
421
|
[3.2.1]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.2.0...v3.2.1
|
|
401
422
|
[3.2.1t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.2.1
|
|
402
423
|
[3.2.0]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.14...v3.2.0
|
data/exe/turbo_tests2
CHANGED
|
@@ -11,6 +11,6 @@ end
|
|
|
11
11
|
# Alias for `turbo_tests` — turbo_tests2 is a drop-in replacement for turbo_tests.
|
|
12
12
|
require "turbo_tests2"
|
|
13
13
|
|
|
14
|
-
puts "== #{script_basename} v#{TurboTests::Version::VERSION} =="
|
|
14
|
+
puts "== #{script_basename} v#{TurboTests::Version::VERSION} ==" if ARGV.include?("--verbose")
|
|
15
15
|
|
|
16
16
|
TurboTests::CLI.new(ARGV).run
|
data/lib/turbo_tests/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
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.2.
|
|
4
|
+
version: 3.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Illia
|
|
@@ -169,6 +169,26 @@ dependencies:
|
|
|
169
169
|
- - ">="
|
|
170
170
|
- !ruby/object:Gem::Version
|
|
171
171
|
version: 1.0.4
|
|
172
|
+
- !ruby/object:Gem::Dependency
|
|
173
|
+
name: anonymous_loader
|
|
174
|
+
requirement: !ruby/object:Gem::Requirement
|
|
175
|
+
requirements:
|
|
176
|
+
- - "~>"
|
|
177
|
+
- !ruby/object:Gem::Version
|
|
178
|
+
version: '0.1'
|
|
179
|
+
- - ">="
|
|
180
|
+
- !ruby/object:Gem::Version
|
|
181
|
+
version: 0.1.3
|
|
182
|
+
type: :development
|
|
183
|
+
prerelease: false
|
|
184
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
185
|
+
requirements:
|
|
186
|
+
- - "~>"
|
|
187
|
+
- !ruby/object:Gem::Version
|
|
188
|
+
version: '0.1'
|
|
189
|
+
- - ">="
|
|
190
|
+
- !ruby/object:Gem::Version
|
|
191
|
+
version: 0.1.3
|
|
172
192
|
- !ruby/object:Gem::Dependency
|
|
173
193
|
name: appraisal2
|
|
174
194
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -232,7 +252,7 @@ dependencies:
|
|
|
232
252
|
version: '1.0'
|
|
233
253
|
- - ">="
|
|
234
254
|
- !ruby/object:Gem::Version
|
|
235
|
-
version: 1.0.
|
|
255
|
+
version: 1.0.7
|
|
236
256
|
type: :development
|
|
237
257
|
prerelease: false
|
|
238
258
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -242,7 +262,7 @@ dependencies:
|
|
|
242
262
|
version: '1.0'
|
|
243
263
|
- - ">="
|
|
244
264
|
- !ruby/object:Gem::Version
|
|
245
|
-
version: 1.0.
|
|
265
|
+
version: 1.0.7
|
|
246
266
|
- !ruby/object:Gem::Dependency
|
|
247
267
|
name: gitmoji-regex
|
|
248
268
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -252,7 +272,7 @@ dependencies:
|
|
|
252
272
|
version: '2.0'
|
|
253
273
|
- - ">="
|
|
254
274
|
- !ruby/object:Gem::Version
|
|
255
|
-
version: 2.0.
|
|
275
|
+
version: 2.0.6
|
|
256
276
|
type: :development
|
|
257
277
|
prerelease: false
|
|
258
278
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -262,7 +282,7 @@ dependencies:
|
|
|
262
282
|
version: '2.0'
|
|
263
283
|
- - ">="
|
|
264
284
|
- !ruby/object:Gem::Version
|
|
265
|
-
version: 2.0.
|
|
285
|
+
version: 2.0.6
|
|
266
286
|
description: "\U0001F680 turbo_tests2` is an RSpec parallel test runner built on `parallel_tests`.
|
|
267
287
|
It uses `parallel_tests` for process counts, file grouping, and runtime balancing,
|
|
268
288
|
then replaces interleaved worker output with incremental summarized RSpec reporting.
|
|
@@ -294,10 +314,10 @@ licenses:
|
|
|
294
314
|
- MIT
|
|
295
315
|
metadata:
|
|
296
316
|
homepage_uri: https://turbo-tests2.galtzo.com
|
|
297
|
-
source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.2.
|
|
298
|
-
changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.2.
|
|
317
|
+
source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.2.2
|
|
318
|
+
changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.2.2/CHANGELOG.md
|
|
299
319
|
bug_tracker_uri: https://github.com/galtzo-floss/turbo_tests2/issues
|
|
300
|
-
documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.2.
|
|
320
|
+
documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.2.2
|
|
301
321
|
funding_uri: https://github.com/sponsors/pboling
|
|
302
322
|
wiki_uri: https://github.com/galtzo-floss/turbo_tests2/wiki
|
|
303
323
|
news_uri: https://www.railsbling.com/tags/turbo_tests2
|
metadata.gz.sig
CHANGED
|
Binary file
|