rspec-core 3.12.2 → 3.12.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/Changelog.md +9 -1
- data/README.md +5 -0
- data/lib/rspec/core/configuration.rb +2 -2
- data/lib/rspec/core/output_wrapper.rb +2 -2
- data/lib/rspec/core/runner.rb +5 -1
- data/lib/rspec/core/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- 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: 65faca56212d43553a89222b29304722e36f0b0dfb92e8b6334f4d1a872450b7
|
|
4
|
+
data.tar.gz: d9c419a1a81321f14b36b2701927831fac99f1146a711afeea363d03e25c4e45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2bb18f48624fb39f57b49f7109a2fd1d1cda6d96a38c2301ffb04255cab661306b4d877e01883d7ea4c45908fc6a6529b67d9daaf9dec7abf6e86941f73a2b2b
|
|
7
|
+
data.tar.gz: be8dd6eaf89cc40b217b753b51c4e688ecd9904d4031d5c4934f68bdd8d2bb67377b36076cb5b852845ee233a455a9da68c585c26513b8bba89189dd34347469
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/Changelog.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
### Development
|
|
2
|
-
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.
|
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.3...main)
|
|
3
|
+
|
|
4
|
+
### 3.12.3 / 2024-02-04
|
|
5
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.2...v3.12.3)
|
|
6
|
+
|
|
7
|
+
Bug fixes:
|
|
8
|
+
|
|
9
|
+
* Use `__send__` in output wrapper to avoid issues with IO objects that implement `send`
|
|
10
|
+
like `Socket`. (Richard Platel, #3045)
|
|
3
11
|
|
|
4
12
|
### 3.12.2 / 2023-04-18
|
|
5
13
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.12.1...v3.12.2)
|
data/README.md
CHANGED
|
@@ -116,6 +116,11 @@ pretty much the same as `shared_examples` and `include_examples`, providing
|
|
|
116
116
|
more accurate naming when you share hooks, `let` declarations, helper methods,
|
|
117
117
|
etc, but no examples.
|
|
118
118
|
|
|
119
|
+
If you want to reuse shared examples or contexts across your RSpec suite you can
|
|
120
|
+
define them in a stand alone _*.rb_ files (_spec/support/shared_examples/definition.rb_
|
|
121
|
+
for example). But you will have to manually `require` them (there is no autoloading of
|
|
122
|
+
_spec/support/_ directory unless you set it up yourself).
|
|
123
|
+
|
|
119
124
|
## Metadata
|
|
120
125
|
|
|
121
126
|
rspec-core stores a metadata hash with every example and group, which
|
|
@@ -453,8 +453,8 @@ module RSpec
|
|
|
453
453
|
add_setting :threadsafe
|
|
454
454
|
|
|
455
455
|
# @macro add_setting
|
|
456
|
-
# Maximum count of failed source lines to display in the failure reports
|
|
457
|
-
# (
|
|
456
|
+
# Maximum count of failed source lines to display in the failure reports
|
|
457
|
+
# (defaults to `10`).
|
|
458
458
|
# return [Integer]
|
|
459
459
|
add_setting :max_displayed_failure_line_count
|
|
460
460
|
|
|
@@ -15,13 +15,13 @@ module RSpec
|
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
def method_missing(name, *args, &block)
|
|
18
|
-
output.
|
|
18
|
+
output.__send__(name, *args, &block)
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
# Redirect calls for IO interface methods
|
|
22
22
|
IO.instance_methods(false).each do |method|
|
|
23
23
|
define_method(method) do |*args, &block|
|
|
24
|
-
output.
|
|
24
|
+
output.__send__(method, *args, &block)
|
|
25
25
|
end
|
|
26
26
|
end
|
|
27
27
|
end
|
data/lib/rspec/core/runner.rb
CHANGED
|
@@ -182,7 +182,11 @@ module RSpec
|
|
|
182
182
|
exit!(1)
|
|
183
183
|
else
|
|
184
184
|
RSpec.world.wants_to_quit = true
|
|
185
|
-
|
|
185
|
+
|
|
186
|
+
$stderr.puts(
|
|
187
|
+
"\nRSpec is shutting down and will print the summary report... Interrupt again to force quit " \
|
|
188
|
+
"(warning: at_exit hooks will be skipped if you force quit)."
|
|
189
|
+
)
|
|
186
190
|
end
|
|
187
191
|
end
|
|
188
192
|
|
data/lib/rspec/core/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: rspec-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.12.
|
|
4
|
+
version: 3.12.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Baker
|
|
@@ -46,7 +46,7 @@ cert_chain:
|
|
|
46
46
|
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
|
|
47
47
|
F3MdtaDehhjC
|
|
48
48
|
-----END CERTIFICATE-----
|
|
49
|
-
date:
|
|
49
|
+
date: 2024-02-04 00:00:00.000000000 Z
|
|
50
50
|
dependencies:
|
|
51
51
|
- !ruby/object:Gem::Dependency
|
|
52
52
|
name: rspec-support
|
|
@@ -267,7 +267,7 @@ licenses:
|
|
|
267
267
|
- MIT
|
|
268
268
|
metadata:
|
|
269
269
|
bug_tracker_uri: https://github.com/rspec/rspec-core/issues
|
|
270
|
-
changelog_uri: https://github.com/rspec/rspec-core/blob/v3.12.
|
|
270
|
+
changelog_uri: https://github.com/rspec/rspec-core/blob/v3.12.3/Changelog.md
|
|
271
271
|
documentation_uri: https://rspec.info/documentation/
|
|
272
272
|
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
|
273
273
|
source_code_uri: https://github.com/rspec/rspec-core
|
|
@@ -290,5 +290,5 @@ requirements: []
|
|
|
290
290
|
rubygems_version: 3.4.10
|
|
291
291
|
signing_key:
|
|
292
292
|
specification_version: 4
|
|
293
|
-
summary: rspec-core-3.12.
|
|
293
|
+
summary: rspec-core-3.12.3
|
|
294
294
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|