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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b472277b993feef40505fbd17ec4b7602310b703c965a1a632aa3c21489812c7
4
- data.tar.gz: f792e2de4afb78108715d74c488aeb8123ac81c67364a27a1859a194190a100a
3
+ metadata.gz: d4b62550813a3e7662e0aef29a0a881fbd3d20852290aa6a1383de126e72c2fa
4
+ data.tar.gz: 3164bc7cd37b3be39086244075f444e916dfc05e92eeb746a51d09e5ab22d0d0
5
5
  SHA512:
6
- metadata.gz: 70d7b9f1cc88b356531dfb38281b58f96a0c3f6f6e4c4cfcfff57fafb03fda83a5380d880259f4ae34e040c3292d98c2d0593b779a8157ccd2df34c23e2bfc39
7
- data.tar.gz: 6a128634eacabc86bab67908576250ec996b52718417073ef1efad6f5765c9855f4d8c71f1d36282551cd0104721b5fe88ce645c2aae3953a282da462f62bb31
6
+ metadata.gz: 3bbbc2ccf13b86e877b0098662ff821575cb7ca6518018fdb7ff3cb82cf81c6402cf41646cce8b4465c4d44a5c2c8a307650303b0b958581279616b5cb2c2635
7
+ data.tar.gz: 189974b5124e63b697ae2f21445ff5fd0f2db690e65eab5b3768cced83e8836ead964461cb155c7d3c4da0a83c2514c46e9f9d5b74fd5dbf6b40cd9dc695478d
checksums.yaml.gz.sig CHANGED
@@ -1,2 +1,4 @@
1
- w�k@u��(yQ ]y2A��w��K.�%E(8I�/�
2
- !ً�И��x{�k1��U��p��8���H�ZV�%�pb"�e(:��/�fyX5dp��ׯ��ei�4b@-�&1͑�-��U���� 퉸�
1
+ ��?��B@�33gK�TᎰ�f~)R�D��_��E�Hn��c��X:�����,�<+�bCl�
2
+ ��RLm��'N ���N[���M*�D#�/!�f1��;��OWn��<��rB�.���|���~*Zv�����ZyJ2P��Gv?�#`}
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.1...HEAD
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  module TurboTests
4
4
  module Version
5
- VERSION = "3.2.1"
5
+ VERSION = "3.2.2"
6
6
  end
7
7
  VERSION = Version::VERSION # Traditional Constant Location
8
8
  end
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.1
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.6
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.6
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.4
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.4
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.1
298
- changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.2.1/CHANGELOG.md
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.1
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