rspec-turbo 0.1.2 → 0.1.3

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: '0893f6f1cf18da0567d9f0269278cf37cc6a7a5b0283e04e2a30f8bd23174bd7'
4
- data.tar.gz: 5df528ce22f1a37238dfe99ab71d85c4dbf890604c068dc3f9163dcf91d95546
3
+ metadata.gz: 455e548802384d8f96139d09af290e9d76dcd5f7d3739669a77dfcb2ad55d2bd
4
+ data.tar.gz: 916b2fade601b8cae5f6b46248b91ce6d4820ebe330f9dec7523657db52b0a99
5
5
  SHA512:
6
- metadata.gz: 261b5c44987eeb63233ff0bbba97f9c05b7425dcb8d21d5a0d30f4a9a84ec941682c0ae9660be0daa391567923eaed49957596cae5acb7a39a12a35534a663dc
7
- data.tar.gz: 609c5ddf05b89abc63268b402df0bb12024cdbbb834c48377412e6c6e0c35f56a6a782fcd7cd3b3c1960da77d3040026d6dd8fdace3e6ddf69d813f98ac7d8b5
6
+ metadata.gz: 1459826357e5e9ac091511916c1c1c71af7d9af6687c660001e4e28f3ca18dbf7d259b943f9423be5a95e096c9be4395f2caaa04125b431c03a2fb141ae5595f
7
+ data.tar.gz: 05be1a74d923db34f516992994a8388c9311c55b2e0bc6897bbe57325a502fcfb8fd8e2b2f775031c1040809ca1d8bb25641c7b55cba8ad97c40521f5fe58cc5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.3] - 2026-06-12
4
+
5
+ ### Fixed
6
+ - Live progress counter stuck at zero on some projects: the per-worker reporter
7
+ now registers the three terminal notifications (`:example_passed`,
8
+ `:example_failed`, `:example_pending`) instead of `:example_finished`, which
9
+ older rspec-core versions don't dispatch to formatters. Mirrors the built-in
10
+ progress formatter, so it counts everywhere.
11
+
3
12
  ## [0.1.2] - 2026-06-12
4
13
 
5
14
  ### Fixed
@@ -12,7 +12,11 @@ module RSpecTurbo
12
12
  # be required by absolute path inside the spawned `rspec` process. The slowest
13
13
  # files report is produced separately by slow_profile.rb.
14
14
  class ProgressReporter < RSpec::Core::Formatters::BaseFormatter
15
- RSpec::Core::Formatters.register self, :example_finished
15
+ # Register the three terminal notifications (exactly one fires per example)
16
+ # instead of :example_finished, which older rspec-core versions don't
17
+ # dispatch to formatters — that left the counter stuck at zero on some
18
+ # projects. This mirrors the built-in progress formatter.
19
+ RSpec::Core::Formatters.register self, :example_passed, :example_failed, :example_pending
16
20
 
17
21
  def initialize(output)
18
22
  super
@@ -20,7 +24,21 @@ module RSpecTurbo
20
24
  @progress_file = ENV["RSPEC_TURBO_PROGRESS_FILE"]
21
25
  end
22
26
 
23
- def example_finished(_notification)
27
+ def example_passed(_notification)
28
+ record
29
+ end
30
+
31
+ def example_failed(_notification)
32
+ record
33
+ end
34
+
35
+ def example_pending(_notification)
36
+ record
37
+ end
38
+
39
+ private
40
+
41
+ def record
24
42
  @count += 1
25
43
  return unless @progress_file
26
44
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RSpecTurbo
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-turbo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - thadeu