parallel_rspec 3.0.0 → 3.0.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
- data/lib/parallel_rspec/client.rb +4 -2
- data/lib/parallel_rspec/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cdfedb35d24a596db8d4e573cad271b526af96bd2035ba33701d628f477f39a0
|
|
4
|
+
data.tar.gz: 55c81e97220b325cdaccc73910401829f8d6ec5171f8caebb312a0ad171dbfb7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fa63512acf7d08f00c8cbdae971a12558214a8ab3fd85a5698fbc81c900d6bf9e7b314227dea2bd76daf055398b8a13cebe49b8b26c3768c29d967eac7df501
|
|
7
|
+
data.tar.gz: a03409838a0a7fcb24b9b999187c48a7e1bd4215b0f08e113a162d49dd0a76de1d1381caa13b71287b3b234eaf36404ecc1d8a44f112dc15edbb16eff0df18ac
|
|
@@ -33,14 +33,15 @@ module ParallelRSpec
|
|
|
33
33
|
class MultipleExceptionMarshallingWrapper < ExceptionMarshallingWrapper
|
|
34
34
|
include ::RSpec::Core::MultipleExceptionError::InterfaceTag
|
|
35
35
|
|
|
36
|
-
attr_reader :all_exceptions, :aggregation_block_label, :aggregation_metadata, :exception_count_description
|
|
36
|
+
attr_reader :all_exceptions, :aggregation_block_label, :aggregation_metadata, :exception_count_description, :summary
|
|
37
37
|
|
|
38
|
-
def initialize(class_name, message, backtrace, cause, all_exceptions, aggregation_block_label, aggregation_metadata, exception_count_description)
|
|
38
|
+
def initialize(class_name, message, backtrace, cause, all_exceptions, aggregation_block_label, aggregation_metadata, exception_count_description, summary)
|
|
39
39
|
super(class_name, message, backtrace, cause)
|
|
40
40
|
@all_exceptions = all_exceptions
|
|
41
41
|
@aggregation_block_label = aggregation_block_label
|
|
42
42
|
@aggregation_metadata = aggregation_metadata
|
|
43
43
|
@exception_count_description = exception_count_description
|
|
44
|
+
@summary = summary
|
|
44
45
|
end
|
|
45
46
|
end
|
|
46
47
|
|
|
@@ -103,6 +104,7 @@ module ParallelRSpec
|
|
|
103
104
|
exception.aggregation_block_label,
|
|
104
105
|
exception.aggregation_metadata,
|
|
105
106
|
exception.exception_count_description,
|
|
107
|
+
exception.summary,
|
|
106
108
|
)
|
|
107
109
|
else
|
|
108
110
|
ExceptionMarshallingWrapper.new(
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: parallel_rspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Will Bryant, Powershop New Zealand Ltd
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|