rspec-support 3.13.0 → 3.13.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 +0 -0
- data/Changelog.md +22 -3
- data/lib/rspec/support/caller_filter.rb +1 -1
- data/lib/rspec/support/spec/shell_out.rb +3 -0
- data/lib/rspec/support/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +8 -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: 4d00874e0f5c8cdbfd6af89bd0b54763d00af6e44f192f956db7f1d0339fbb7d
|
4
|
+
data.tar.gz: b4003c525be624eb4adbdd2a72361898c301f84186469a4e62afad1207a4c80b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b07b1437db48aa727c95168b32fbd9b16ef13542accebd15b8ca12e9393e310d7120f128445eadbee725b72f8359460f7f3511fb59f58dadd91691a32ededb8
|
7
|
+
data.tar.gz: 1ff435a11b600b8bb6432cdab88f8c3d7a0603b3d1f7fe023e0b9b971f651976d08da482ffccacc35363543fe1c9b196dbb6bf28ea06c239d124c41225e94ead
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/Changelog.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
### Development
|
2
|
-
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.2...3-13-maintenance)
|
3
|
+
|
4
|
+
### 3.13.2 / 2024-12-02
|
5
|
+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.1...v3.13.2)
|
6
|
+
|
7
|
+
Bug Fixes:
|
8
|
+
|
9
|
+
* Prevent recursive calls to stubbed methods during stub invocation.
|
10
|
+
(James Dabbs, rspec/rspec#116)
|
11
|
+
|
12
|
+
### 3.13.1 / 2024-02-23
|
13
|
+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.0...v3.13.1)
|
14
|
+
|
15
|
+
Bug Fixes:
|
16
|
+
|
17
|
+
* Exclude ruby internal require warnings from `RSpec::Support::CallerFilter#first_non_rspec_line`.
|
18
|
+
(Jon Rowe, #593)
|
3
19
|
|
4
20
|
### 3.13.0 / 2024-02-04
|
5
21
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.2...v3.13.0)
|
@@ -8,6 +24,11 @@ Enchancements
|
|
8
24
|
|
9
25
|
* Add `RubyFeatures#supports_syntax_suggest?`. (Jon Rowe, #571)
|
10
26
|
|
27
|
+
Bug Fixes:
|
28
|
+
|
29
|
+
* Allow string keys for keyword arguments during verification of method
|
30
|
+
signatures, (but only on Ruby 3+). (@malcolmohare, #591)
|
31
|
+
|
11
32
|
### 3.12.2 / 2024-02-04
|
12
33
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.1...v3.12.2)
|
13
34
|
|
@@ -15,8 +36,6 @@ Bug Fixes:
|
|
15
36
|
|
16
37
|
* Properly surface errors from `in_sub_process`. (Jon Rowe, #575)
|
17
38
|
* Add magic comment for freezing string literals. (Josh Nichols, #586)
|
18
|
-
* Allow string keys for keyword arguments during verification of method
|
19
|
-
signatures, (but only on Ruby 3+). (@malcolmohare, #591)
|
20
39
|
|
21
40
|
### 3.12.1 / 2023-06-26
|
22
41
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.0...v3.12.1)
|
@@ -27,7 +27,7 @@ module RSpec
|
|
27
27
|
# when `CallerFilter.first_non_rspec_line` is called from the top level of a required
|
28
28
|
# file, but it depends on if rubygems is loaded or not. We don't want to have to deal
|
29
29
|
# with this complexity in our `RSpec.deprecate` calls, so we ignore it here.
|
30
|
-
IGNORE_REGEX = Regexp.union(LIB_REGEX, "rubygems/core_ext/kernel_require.rb", "<internal:")
|
30
|
+
IGNORE_REGEX = Regexp.union(LIB_REGEX, "rubygems/core_ext/kernel_require.rb", "<internal:", %r{/lib/ruby/[^/]+/bundled_gems\.rb})
|
31
31
|
|
32
32
|
if RSpec::Support::RubyFeatures.caller_locations_supported?
|
33
33
|
# This supports args because it's more efficient when the caller specifies
|
@@ -61,7 +61,9 @@ module RSpec
|
|
61
61
|
%r{bundler/source/rubygems},
|
62
62
|
# Ignore bundler + rubygems warning.
|
63
63
|
%r{site_ruby/\d\.\d\.\d/rubygems},
|
64
|
+
%r{site_ruby/\d\.\d\.\d/bundler},
|
64
65
|
%r{jruby-\d\.\d\.\d+\.\d/lib/ruby/stdlib/rubygems},
|
66
|
+
%r{lib/rubygems/custom_require},
|
65
67
|
# This is required for windows for some reason
|
66
68
|
%r{lib/bundler/rubygems},
|
67
69
|
# This is a JRuby file that generates warnings on 9.0.3.0
|
@@ -82,6 +84,7 @@ module RSpec
|
|
82
84
|
# Ignore some JRuby errors for gems
|
83
85
|
%r{jruby/\d\.\d(\.\d)?/gems/aruba},
|
84
86
|
%r{jruby/\d\.\d(\.\d)?/gems/ffi},
|
87
|
+
%r{warning: encoding options not supported in 1\.8},
|
85
88
|
]
|
86
89
|
|
87
90
|
def strip_known_warnings(input)
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.13.
|
4
|
+
version: 3.13.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Chelimsky
|
@@ -48,7 +48,7 @@ cert_chain:
|
|
48
48
|
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
|
49
49
|
F3MdtaDehhjC
|
50
50
|
-----END CERTIFICATE-----
|
51
|
-
date: 2024-02
|
51
|
+
date: 2024-12-02 00:00:00.000000000 Z
|
52
52
|
dependencies:
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rake
|
@@ -120,15 +120,15 @@ files:
|
|
120
120
|
- lib/rspec/support/version.rb
|
121
121
|
- lib/rspec/support/warnings.rb
|
122
122
|
- lib/rspec/support/with_keywords_when_needed.rb
|
123
|
-
homepage: https://github.com/rspec/rspec
|
123
|
+
homepage: https://github.com/rspec/rspec
|
124
124
|
licenses:
|
125
125
|
- MIT
|
126
126
|
metadata:
|
127
|
-
bug_tracker_uri: https://github.com/rspec/rspec
|
128
|
-
changelog_uri: https://github.com/rspec/rspec
|
127
|
+
bug_tracker_uri: https://github.com/rspec/rspec/issues
|
128
|
+
changelog_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.2/rspec-support/Changelog.md
|
129
129
|
documentation_uri: https://rspec.info/documentation/
|
130
130
|
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
131
|
-
source_code_uri: https://github.com/rspec/rspec-support
|
131
|
+
source_code_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.2/rspec-support
|
132
132
|
post_install_message:
|
133
133
|
rdoc_options:
|
134
134
|
- "--charset=UTF-8"
|
@@ -145,8 +145,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '0'
|
147
147
|
requirements: []
|
148
|
-
rubygems_version: 3.
|
148
|
+
rubygems_version: 3.5.16
|
149
149
|
signing_key:
|
150
150
|
specification_version: 4
|
151
|
-
summary: rspec-support-3.13.
|
151
|
+
summary: rspec-support-3.13.2
|
152
152
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|