rspec-support 3.13.2 → 3.13.5
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 +86 -65
- data/lib/rspec/support/method_signature_verifier.rb +35 -10
- data/lib/rspec/support/object_formatter.rb +2 -0
- data/lib/rspec/support/spec/diff_helpers.rb +14 -2
- data/lib/rspec/support/spec/shell_out.rb +2 -0
- data/lib/rspec/support/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +24 -27
- 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: 627c7e28fcb4a040f33ce0f321252d4c659389a6f1230df267c9f923be43c3d9
|
4
|
+
data.tar.gz: 6147b06d1eb09093a6c94ebb4b2779a24f40bf6d137e3800827671f2eac077ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c7110b65063601e4f8fc2cc6f49a43dcd363b5c2bcc94671b515362be6b780e3ab0e7e3c27ed3bd63333574bac38ff697e5d43cf771763c1712a90a4c099c93
|
7
|
+
data.tar.gz: 30b20b1b6134613b68a467f5af2c8edf2570e7f8fe7a6feeb74e751d4f7f577dc7e02243f43fab83c8dfeb0cd7a7809767a4d18394daf1979d4dd11814acffd5
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/Changelog.md
CHANGED
@@ -1,13 +1,34 @@
|
|
1
1
|
### Development
|
2
|
-
[Full Changelog](
|
2
|
+
[Full Changelog](https://github.com/rspec/rspec/compare/rspec-support-v3.13.5...3-13-maintenance)
|
3
3
|
|
4
|
-
### 3.13.
|
5
|
-
[Full Changelog](http://github.com/rspec/rspec
|
4
|
+
### 3.13.5
|
5
|
+
[Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.4...rspec-support-v3.13.5)
|
6
|
+
|
7
|
+
Bug Fixes:
|
8
|
+
|
9
|
+
* Fix regression in `RSpec::Support::MethodSignature` where positional argument arity confused
|
10
|
+
a check for keyword arguments, meaning a hash would be wrongly detected as keyword arguments
|
11
|
+
when it should have been a positional argument. (Malcolm O'Hare, rspec/rspec#121)
|
12
|
+
|
13
|
+
### 3.13.4
|
14
|
+
[Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.3...rspec-support-v3.13.4)
|
15
|
+
|
16
|
+
Bug Fixes:
|
17
|
+
|
18
|
+
* Fix homepage link in gemspec. (Jon Rowe)
|
19
|
+
|
20
|
+
### 3.13.3 / 2025-04-30
|
21
|
+
[Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.2...rspec-support-v3.13.3)
|
6
22
|
|
7
23
|
Bug Fixes:
|
8
24
|
|
9
|
-
*
|
10
|
-
|
25
|
+
* Support for changes in diff-lcs and Ruby 3.4 in spec helpers. (Jon Rowe, #164 etc)
|
26
|
+
|
27
|
+
### 3.13.2 / 2024-12-02
|
28
|
+
[Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.1...rspec-support-v3.13.2)
|
29
|
+
|
30
|
+
No changes. Released during the monorepo migration to test release processes, but accidentally
|
31
|
+
contained no changes.
|
11
32
|
|
12
33
|
### 3.13.1 / 2024-02-23
|
13
34
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.0...v3.13.1)
|
@@ -15,27 +36,27 @@ Bug Fixes:
|
|
15
36
|
Bug Fixes:
|
16
37
|
|
17
38
|
* Exclude ruby internal require warnings from `RSpec::Support::CallerFilter#first_non_rspec_line`.
|
18
|
-
(Jon Rowe, #593)
|
39
|
+
(Jon Rowe, rspec/rspec-support#593)
|
19
40
|
|
20
41
|
### 3.13.0 / 2024-02-04
|
21
42
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.2...v3.13.0)
|
22
43
|
|
23
44
|
Enchancements
|
24
45
|
|
25
|
-
* Add `RubyFeatures#supports_syntax_suggest?`. (Jon Rowe, #571)
|
46
|
+
* Add `RubyFeatures#supports_syntax_suggest?`. (Jon Rowe, rspec/rspec-support#571)
|
26
47
|
|
27
48
|
Bug Fixes:
|
28
49
|
|
29
50
|
* Allow string keys for keyword arguments during verification of method
|
30
|
-
signatures, (but only on Ruby 3+). (@malcolmohare, #591)
|
51
|
+
signatures, (but only on Ruby 3+). (@malcolmohare, rspec/rspec-support#591)
|
31
52
|
|
32
53
|
### 3.12.2 / 2024-02-04
|
33
54
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.1...v3.12.2)
|
34
55
|
|
35
56
|
Bug Fixes:
|
36
57
|
|
37
|
-
* Properly surface errors from `in_sub_process`. (Jon Rowe, #575)
|
38
|
-
* Add magic comment for freezing string literals. (Josh Nichols, #586)
|
58
|
+
* Properly surface errors from `in_sub_process`. (Jon Rowe, rspec/rspec-support#575)
|
59
|
+
* Add magic comment for freezing string literals. (Josh Nichols, rspec/rspec-support#586)
|
39
60
|
|
40
61
|
### 3.12.1 / 2023-06-26
|
41
62
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.0...v3.12.1)
|
@@ -43,21 +64,21 @@ Bug Fixes:
|
|
43
64
|
Bug Fixes:
|
44
65
|
|
45
66
|
* Fix `RSpec::Support.thread_local_data` to be Thread local but not Fiber local.
|
46
|
-
(Jon Rowe, #581)
|
67
|
+
(Jon Rowe, rspec/rspec-support#581)
|
47
68
|
|
48
69
|
### 3.12.0 / 2022-10-26
|
49
70
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.11.1...v3.12.0)
|
50
71
|
Enhancements:
|
51
72
|
|
52
73
|
* Add `RSpec::Support::RubyFeatures.distincts_kw_args_from_positional_hash?`
|
53
|
-
(Jean byroot Boussier, #535)
|
74
|
+
(Jean byroot Boussier, rspec/rspec-support#535)
|
54
75
|
|
55
76
|
### 3.11.1 / 2022-09-12
|
56
77
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.11.0...v3.11.1)
|
57
78
|
|
58
79
|
Bug Fixes:
|
59
80
|
|
60
|
-
* Fix ripper detection on TruffleRuby. (Brandon Fish, #541)
|
81
|
+
* Fix ripper detection on TruffleRuby. (Brandon Fish, rspec/rspec-support#541)
|
61
82
|
|
62
83
|
### 3.11.0 / 2022-02-09
|
63
84
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.3...v3.11.0)
|
@@ -70,9 +91,9 @@ No changes. Released to support other RSpec releases.
|
|
70
91
|
Bug Fixes:
|
71
92
|
|
72
93
|
* Use `Mutex#owned?` to allow `RSpec::Support::ReentrantMutex` to work in
|
73
|
-
nested Fibers on Ruby 3.0 and later. (Benoit Daloze, #503, #504)
|
94
|
+
nested Fibers on Ruby 3.0 and later. (Benoit Daloze, rspec/rspec-support#503, rspec/rspec-support#504)
|
74
95
|
* Support `end`-less methods in `RSpec::Support::Source::Token`
|
75
|
-
so that RSpec won't hang when an `end`-less method raises an error. (Yuji Nakayama, #505)
|
96
|
+
so that RSpec won't hang when an `end`-less method raises an error. (Yuji Nakayama, rspec/rspec-support#505)
|
76
97
|
|
77
98
|
### 3.10.2 / 2021-01-28
|
78
99
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.1...v3.10.2)
|
@@ -80,7 +101,7 @@ Bug Fixes:
|
|
80
101
|
Bug Fixes:
|
81
102
|
|
82
103
|
* Fix issue with `RSpec::Support.define_optimized_require_for_rspec` on JRuby
|
83
|
-
9.1.17.0 (Jon Rowe, #492)
|
104
|
+
9.1.17.0 (Jon Rowe, rspec/rspec-support#492)
|
84
105
|
|
85
106
|
### 3.10.1 / 2020-12-27
|
86
107
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.0...v3.10.1)
|
@@ -88,7 +109,7 @@ Bug Fixes:
|
|
88
109
|
Bug Fixes:
|
89
110
|
|
90
111
|
* Fix deprecation expectations to fail correctly when
|
91
|
-
asserting on messages. (Phil Pirozhkov, #453)
|
112
|
+
asserting on messages. (Phil Pirozhkov, rspec/rspec-support#453)
|
92
113
|
|
93
114
|
### 3.10.0 / 2020-10-30
|
94
115
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.9.4...v3.10.0)
|
@@ -100,26 +121,26 @@ No changes. Released to support other RSpec releases.
|
|
100
121
|
|
101
122
|
Bug Fixes:
|
102
123
|
|
103
|
-
* Flag ripper as supported on Truffle Ruby. (Brandon Fish, #427)
|
124
|
+
* Flag ripper as supported on Truffle Ruby. (Brandon Fish, rspec/rspec-support#427)
|
104
125
|
* Prevent stubbing `File.read` from breaking source extraction.
|
105
|
-
(Jon Rowe, #431)
|
126
|
+
(Jon Rowe, rspec/rspec-support#431)
|
106
127
|
|
107
128
|
### 3.9.3 / 2020-05-02
|
108
129
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.9.2...v3.9.3)
|
109
130
|
|
110
131
|
Bug Fixes:
|
111
132
|
|
112
|
-
* Mark ripper as unsupported on Truffle Ruby. (Brandon Fish, #395)
|
113
|
-
* Mark ripper as unsupported on JRuby 9.2.0.0. (Brian Hawley, #400)
|
133
|
+
* Mark ripper as unsupported on Truffle Ruby. (Brandon Fish, rspec/rspec-support#395)
|
134
|
+
* Mark ripper as unsupported on JRuby 9.2.0.0. (Brian Hawley, rspec/rspec-support#400)
|
114
135
|
* Capture `Mutex.new` for our `RSpec::Support:Mutex` in order to
|
115
|
-
allow stubbing `Mutex.new`. (Jon Rowe, #411)
|
136
|
+
allow stubbing `Mutex.new`. (Jon Rowe, rspec/rspec-support#411)
|
116
137
|
|
117
138
|
### 3.9.2 / 2019-12-30
|
118
139
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.9.1...v3.9.2)
|
119
140
|
|
120
141
|
Bug Fixes:
|
121
142
|
|
122
|
-
* Remove unneeded eval. (Matijs van Zuijlen, #394)
|
143
|
+
* Remove unneeded eval. (Matijs van Zuijlen, rspec/rspec-support#394)
|
123
144
|
|
124
145
|
### 3.9.1 / 2019-12-28
|
125
146
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.9.0...v3.9.1)
|
@@ -127,7 +148,7 @@ Bug Fixes:
|
|
127
148
|
Bug Fixes:
|
128
149
|
|
129
150
|
* Remove warning caused by keyword arguments on Ruby 2.7.0.
|
130
|
-
(Jon Rowe, #392)
|
151
|
+
(Jon Rowe, rspec/rspec-support#392)
|
131
152
|
|
132
153
|
### 3.9.0 / 2019-10-07
|
133
154
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.8.3...v3.9.0)
|
@@ -142,9 +163,9 @@ Version 3.9.0 was released to allow other RSpec gems to release 3.9.0.
|
|
142
163
|
Bug Fixes:
|
143
164
|
|
144
165
|
* Escape \r when outputting strings inside arrays.
|
145
|
-
(Tomita Masahiro, Jon Rowe, #378)
|
166
|
+
(Tomita Masahiro, Jon Rowe, rspec/rspec-support#378)
|
146
167
|
* Ensure that optional hash arguments are recognised correctly vs keyword
|
147
|
-
arguments. (Evgeni Dzhelyov, #366)
|
168
|
+
arguments. (Evgeni Dzhelyov, rspec/rspec-support#366)
|
148
169
|
|
149
170
|
### 3.8.2 / 2019-06-10
|
150
171
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.8.1...v3.8.2)
|
@@ -152,9 +173,9 @@ Bug Fixes:
|
|
152
173
|
Bug Fixes:
|
153
174
|
|
154
175
|
* Ensure that an empty hash is recognised as empty keyword arguments when
|
155
|
-
applicable. (Thomas Walpole, #375)
|
176
|
+
applicable. (Thomas Walpole, rspec/rspec-support#375)
|
156
177
|
* Ensure that diffing truthy values produce diffs consistently.
|
157
|
-
(Lucas Nestor, #377)
|
178
|
+
(Lucas Nestor, rspec/rspec-support#377)
|
158
179
|
|
159
180
|
### 3.8.1 / 2019-03-03
|
160
181
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.8.0...v3.8.1)
|
@@ -162,7 +183,7 @@ Bug Fixes:
|
|
162
183
|
Bug Fixes:
|
163
184
|
|
164
185
|
* Ensure that inspecting a `SimpleDelegator` based object works regardless of
|
165
|
-
visibility of the `__getobj__` method. (Jon Rowe, #369)
|
186
|
+
visibility of the `__getobj__` method. (Jon Rowe, rspec/rspec-support#369)
|
166
187
|
|
167
188
|
### 3.8.0 / 2018-08-04
|
168
189
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.7.1...v3.8.0)
|
@@ -170,7 +191,7 @@ Bug Fixes:
|
|
170
191
|
Bug Fixes:
|
171
192
|
|
172
193
|
* Order hash keys before diffing to improve diff accuracy when using mocked calls.
|
173
|
-
(James Crisp, #334)
|
194
|
+
(James Crisp, rspec/rspec-support#334)
|
174
195
|
|
175
196
|
### 3.7.1 / 2018-01-29
|
176
197
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.7.0...v3.7.1)
|
@@ -178,7 +199,7 @@ Bug Fixes:
|
|
178
199
|
Bug Fixes:
|
179
200
|
|
180
201
|
* Fix source extraction logic so that it does not trigger a `SystemStackError`
|
181
|
-
when processing deeply nested example groups. (Craig Bass, #343)
|
202
|
+
when processing deeply nested example groups. (Craig Bass, rspec/rspec-support#343)
|
182
203
|
|
183
204
|
### 3.7.0 / 2017-10-17
|
184
205
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.6.0...v3.7.0)
|
@@ -186,21 +207,21 @@ Bug Fixes:
|
|
186
207
|
Enhancements:
|
187
208
|
|
188
209
|
* Improve compatibility with `--enable-frozen-string-literal` option
|
189
|
-
on Ruby 2.3+. (Pat Allan, #320)
|
210
|
+
on Ruby 2.3+. (Pat Allan, rspec/rspec-support#320)
|
190
211
|
* Add `Support.class_of` for extracting class of any object.
|
191
|
-
(Yuji Nakayama, #325)
|
212
|
+
(Yuji Nakayama, rspec/rspec-support#325)
|
192
213
|
|
193
214
|
Bug Fixes:
|
194
215
|
|
195
216
|
* Fix recursive const support to not blow up when given buggy classes
|
196
|
-
that raise odd errors from `#to_str`. (Myron Marston, #317)
|
217
|
+
that raise odd errors from `#to_str`. (Myron Marston, rspec/rspec-support#317)
|
197
218
|
|
198
219
|
### 3.6.0 / 2017-05-04
|
199
220
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.6.0.beta2...3.6.0)
|
200
221
|
|
201
222
|
Enhancements:
|
202
223
|
|
203
|
-
* Import `Source` classes from rspec-core. (Yuji Nakayama, #315)
|
224
|
+
* Import `Source` classes from rspec-core. (Yuji Nakayama, rspec/rspec-support#315)
|
204
225
|
|
205
226
|
### 3.6.0.beta2 / 2016-12-12
|
206
227
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.6.0.beta1...v3.6.0.beta2)
|
@@ -212,7 +233,7 @@ No user-facing changes.
|
|
212
233
|
|
213
234
|
Bug Fixes:
|
214
235
|
|
215
|
-
* Prevent truncated formatted object output from mangling console codes. (#294, Anson Kelly)
|
236
|
+
* Prevent truncated formatted object output from mangling console codes. (rspec/rspec-support#294, Anson Kelly)
|
216
237
|
|
217
238
|
### 3.5.0 / 2016-07-01
|
218
239
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta4...v3.5.0)
|
@@ -223,7 +244,7 @@ Bug Fixes:
|
|
223
244
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta3...v3.5.0.beta4)
|
224
245
|
|
225
246
|
Enhancements:
|
226
|
-
* Improve `MethodSignature` to better support keyword arguments. (#250, Rob Smith).
|
247
|
+
* Improve `MethodSignature` to better support keyword arguments. (rspec/rspec-support#250, Rob Smith).
|
227
248
|
|
228
249
|
### 3.5.0.beta3 / 2016-04-02
|
229
250
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta2...v3.5.0.beta3)
|
@@ -231,12 +252,12 @@ Enhancements:
|
|
231
252
|
Bug Fixes:
|
232
253
|
|
233
254
|
* Fix `EncodedString` to properly handle the behavior of `String#split`
|
234
|
-
on JRuby when the string contains invalid bytes. (Jon Rowe, #268)
|
255
|
+
on JRuby when the string contains invalid bytes. (Jon Rowe, rspec/rspec-support#268)
|
235
256
|
* Fix `ObjectFormatter` so that formatting objects that don't respond to
|
236
257
|
`#inspect` (such as `BasicObject`) does not cause `NoMethodError`.
|
237
|
-
(Yuji Nakayama, #269)
|
258
|
+
(Yuji Nakayama, rspec/rspec-support#269)
|
238
259
|
* Fix `ObjectFormatter` so that formatting recursive array or hash does not
|
239
|
-
cause `SystemStackError`. (Yuji Nakayama, #270, #272)
|
260
|
+
cause `SystemStackError`. (Yuji Nakayama, rspec/rspec-support#270, rspec/rspec-support#272)
|
240
261
|
|
241
262
|
### 3.5.0.beta2 / 2016-03-10
|
242
263
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta1...v3.5.0.beta2)
|
@@ -249,7 +270,7 @@ No user-facing changes.
|
|
249
270
|
Enhancements:
|
250
271
|
|
251
272
|
* Improve formatting of objects by allowing truncation to a pre-configured length.
|
252
|
-
(Liam M, #256)
|
273
|
+
(Liam M, rspec/rspec-support#256)
|
253
274
|
|
254
275
|
### 3.4.1 / 2015-11-20
|
255
276
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.4.0...v3.4.1)
|
@@ -259,11 +280,11 @@ Bug Fixes:
|
|
259
280
|
* Fix `RSpec::Support::RubyFeature.ripper_supported?` so it returns
|
260
281
|
`false` on Rubinius since the Rubinius team has no plans to support
|
261
282
|
it. This prevents rspec-core from trying to load and use ripper to
|
262
|
-
extract failure snippets. (Aaron Stone, #251)
|
283
|
+
extract failure snippets. (Aaron Stone, rspec/rspec-support#251)
|
263
284
|
|
264
285
|
Changes:
|
265
286
|
|
266
|
-
* Remove `VersionChecker` in favor of `ComparableVersion`. (Yuji Nakayama, #266)
|
287
|
+
* Remove `VersionChecker` in favor of `ComparableVersion`. (Yuji Nakayama, rspec/rspec-support#266)
|
267
288
|
|
268
289
|
### 3.4.0 / 2015-11-11
|
269
290
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.3.0...v3.4.0)
|
@@ -271,15 +292,15 @@ Changes:
|
|
271
292
|
Enhancements:
|
272
293
|
|
273
294
|
* Improve formatting of `Delegator` based objects (e.g. `SimpleDelegator`) in
|
274
|
-
failure messages and diffs. (Andrew Horner, #215)
|
275
|
-
* Add `ComparableVersion`. (Yuji Nakayama, #245)
|
276
|
-
* Add `Ripper` support detection. (Yuji Nakayama, #245)
|
295
|
+
failure messages and diffs. (Andrew Horner, rspec/rspec-support#215)
|
296
|
+
* Add `ComparableVersion`. (Yuji Nakayama, rspec/rspec-support#245)
|
297
|
+
* Add `Ripper` support detection. (Yuji Nakayama, rspec/rspec-support#245)
|
277
298
|
|
278
299
|
Bug Fixes:
|
279
300
|
|
280
301
|
* Work around bug in JRuby that reports that `attr_writer` methods
|
281
302
|
have no parameters, causing RSpec's verifying doubles to wrongly
|
282
|
-
fail when mocking or stubbing a writer method on JRuby. (Myron Marston, #225)
|
303
|
+
fail when mocking or stubbing a writer method on JRuby. (Myron Marston, rspec/rspec-support#225)
|
283
304
|
|
284
305
|
### 3.3.0 / 2015-06-12
|
285
306
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.2...v3.3.0)
|
@@ -288,8 +309,8 @@ Enhancements:
|
|
288
309
|
|
289
310
|
* Improve formatting of arrays and hashes in failure messages so they
|
290
311
|
use our custom formatting of matchers, time objects, etc.
|
291
|
-
(Myron Marston, Nicholas Chmielewski, #205)
|
292
|
-
* Use improved formatting for diffs as well. (Nicholas Chmielewski, #205)
|
312
|
+
(Myron Marston, Nicholas Chmielewski, rspec/rspec-support#205)
|
313
|
+
* Use improved formatting for diffs as well. (Nicholas Chmielewski, rspec/rspec-support#205)
|
293
314
|
|
294
315
|
Bug Fixes:
|
295
316
|
|
@@ -298,7 +319,7 @@ Bug Fixes:
|
|
298
319
|
`actual` object's `==` is improperly implemented to assume that only
|
299
320
|
objects of the same type will be given. This allows rspec-mocks'
|
300
321
|
`anything` to match against objects with buggy `==` definitions.
|
301
|
-
(Myron Marston, #193)
|
322
|
+
(Myron Marston, rspec/rspec-support#193)
|
302
323
|
|
303
324
|
### 3.2.2 / 2015-02-23
|
304
325
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.1...v3.2.2)
|
@@ -306,7 +327,7 @@ Bug Fixes:
|
|
306
327
|
Bug Fixes:
|
307
328
|
|
308
329
|
* Fix an encoding issue with `EncodedString#split` when encountering an
|
309
|
-
invalid byte string. (Benjamin Fleischer, #1760)
|
330
|
+
invalid byte string. (Benjamin Fleischer, rspec/rspec-support#1760)
|
310
331
|
|
311
332
|
### 3.2.1 / 2015-02-04
|
312
333
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.0...v3.2.1)
|
@@ -314,20 +335,20 @@ Bug Fixes:
|
|
314
335
|
Bug Fixes:
|
315
336
|
|
316
337
|
* Fix `RSpec::CallerFilter` to work on Rubinius 2.2.
|
317
|
-
(Myron Marston, #169)
|
338
|
+
(Myron Marston, rspec/rspec-support#169)
|
318
339
|
|
319
340
|
### 3.2.0 / 2015-02-03
|
320
341
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.1.2...v3.2.0)
|
321
342
|
|
322
343
|
Enhancements:
|
323
344
|
|
324
|
-
* Add extra Ruby type detection. (Jon Rowe, #133)
|
325
|
-
* Make differ instance re-usable. (Alexey Fedorov, #160)
|
345
|
+
* Add extra Ruby type detection. (Jon Rowe, rspec/rspec-support#133)
|
346
|
+
* Make differ instance re-usable. (Alexey Fedorov, rspec/rspec-support#160)
|
326
347
|
|
327
348
|
Bug Fixes:
|
328
349
|
|
329
350
|
* Do not consider `[]` and `{}` to match when performing fuzzy matching.
|
330
|
-
(Myron Marston, #157)
|
351
|
+
(Myron Marston, rspec/rspec-support#157)
|
331
352
|
|
332
353
|
### 3.1.2 / 2014-10-08
|
333
354
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.1.1...v3.1.2)
|
@@ -335,7 +356,7 @@ Bug Fixes:
|
|
335
356
|
Bug Fixes:
|
336
357
|
|
337
358
|
* Fix method signature to not blow up with a `NoMethodError` on 1.8.7 when
|
338
|
-
verifying against an RSpec matcher. (Myron Marston, #116)
|
359
|
+
verifying against an RSpec matcher. (Myron Marston, rspec/rspec-support#116)
|
339
360
|
|
340
361
|
### 3.1.1 / 2014-09-26
|
341
362
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.1.0...v3.1.1)
|
@@ -344,7 +365,7 @@ Bug Fixes:
|
|
344
365
|
|
345
366
|
* Fix `RSpec::Support::DirectoryMaker` (used by `rspec --init` and
|
346
367
|
`rails generate rspec:install`) so that it detects absolute paths
|
347
|
-
on Windows properly. (Scott Archer, #107, #108, #109) (Jon Rowe, #110)
|
368
|
+
on Windows properly. (Scott Archer, rspec/rspec-support#107, rspec/rspec-support#108, rspec/rspec-support#109) (Jon Rowe, rspec/rspec-support#110)
|
348
369
|
|
349
370
|
### 3.1.0 / 2014-09-04
|
350
371
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.4...v3.1.0)
|
@@ -352,9 +373,9 @@ Bug Fixes:
|
|
352
373
|
Bug Fixes:
|
353
374
|
|
354
375
|
* Fix `FuzzyMatcher` so that it does not wrongly match a struct against
|
355
|
-
an array. (Myron Marston, #97)
|
376
|
+
an array. (Myron Marston, rspec/rspec-support#97)
|
356
377
|
* Prevent infinitely recursing `#flatten` methods from causing the differ
|
357
|
-
to hang. (Jon Rowe, #101)
|
378
|
+
to hang. (Jon Rowe, rspec/rspec-support#101)
|
358
379
|
|
359
380
|
### 3.0.4 / 2014-08-14
|
360
381
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.3...v3.0.4)
|
@@ -362,7 +383,7 @@ Bug Fixes:
|
|
362
383
|
Bug Fixes:
|
363
384
|
|
364
385
|
* Fix `FuzzyMatcher` so that it does not silence `ArgumentError` raised
|
365
|
-
from broken implementations of `==`. (Myron Marston, #94)
|
386
|
+
from broken implementations of `==`. (Myron Marston, rspec/rspec-support#94)
|
366
387
|
|
367
388
|
### 3.0.3 / 2014-07-21
|
368
389
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.2...v3.0.3)
|
@@ -371,23 +392,23 @@ Bug Fixes:
|
|
371
392
|
|
372
393
|
* Fix regression in `Support#method_handle_for` where proxy objects
|
373
394
|
with method delegated would wrongly not return a method handle.
|
374
|
-
(Jon Rowe, #90)
|
375
|
-
* Properly detect Module#prepend support in Ruby 2.1+ (Ben Langfeld, #91)
|
395
|
+
(Jon Rowe, rspec/rspec-support#90)
|
396
|
+
* Properly detect Module#prepend support in Ruby 2.1+ (Ben Langfeld, rspec/rspec-support#91)
|
376
397
|
* Fix `rspec/support/warnings.rb` so it can be loaded and used in
|
377
|
-
isolation. (Myron Marston, #93)
|
398
|
+
isolation. (Myron Marston, rspec/rspec-support#93)
|
378
399
|
|
379
400
|
### 3.0.2 / 2014-06-20
|
380
401
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.1...v3.0.2)
|
381
402
|
|
382
403
|
* Revert `BlockSignature` change from 3.0.1 because of a ruby bug that
|
383
404
|
caused it to change the block's behavior (https://bugs.ruby-lang.org/issues/9967).
|
384
|
-
(Myron Marston, rspec-
|
405
|
+
(Myron Marston, rspec-mocksrspec/rspec-support#721)
|
385
406
|
|
386
407
|
### 3.0.1 / 2014-06-19
|
387
408
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.0...v3.0.1)
|
388
409
|
|
389
410
|
* Fix `BlockSignature` so that it correctly differentiates between
|
390
|
-
required and optional block args. (Myron Marston, rspec-
|
411
|
+
required and optional block args. (Myron Marston, rspec-mocksrspec/rspec-support#714)
|
391
412
|
|
392
413
|
### 3.0.0 / 2014-06-01
|
393
414
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.0.rc1...v3.0.0)
|
@@ -79,12 +79,37 @@ module RSpec
|
|
79
79
|
given_kw_args - @allowed_kw_args
|
80
80
|
end
|
81
81
|
|
82
|
-
#
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
could_contain_kw_args?(args)
|
87
|
-
|
82
|
+
# Considering the arg types, are there kw_args?
|
83
|
+
if RubyFeatures.kw_arg_separation?
|
84
|
+
def has_kw_args_in?(args)
|
85
|
+
# If the last arg is a hash, depending on the signature it could be kw_args or a positional parameter.
|
86
|
+
return false unless Hash === args.last && could_contain_kw_args?(args)
|
87
|
+
|
88
|
+
# If the position of the hash is beyond the count of required and optional positional
|
89
|
+
# args then it is the kwargs hash
|
90
|
+
return true if args.count > @max_non_kw_args
|
91
|
+
|
92
|
+
# This is the proper way to disambiguate between positional args and keywords hash
|
93
|
+
# but relies on beginning of the call chain annotating the method with
|
94
|
+
# ruby2_keywords, so only use it for positive feedback as without the annotation
|
95
|
+
# this is always false
|
96
|
+
return true if Hash.ruby2_keywords_hash?(args[-1])
|
97
|
+
|
98
|
+
# Otherwise, the hash could be defined kw_args or an optional positional parameter
|
99
|
+
# inspect the keys against known kwargs to determine what it is
|
100
|
+
# Note: the problem with this is that if a user passes only invalid keyword args,
|
101
|
+
# rspec no longer detects is and will assign this to a positional argument
|
102
|
+
return arbitrary_kw_args? || args.last.keys.all? { |x| @allowed_kw_args.include?(x) }
|
103
|
+
end
|
104
|
+
else
|
105
|
+
def has_kw_args_in?(args)
|
106
|
+
# Version <= Ruby 2.7
|
107
|
+
# If the last argument is Hash, Ruby will treat only symbol keys as keyword arguments
|
108
|
+
# the rest will be grouped in another Hash and passed as positional argument.
|
109
|
+
Hash === args.last &&
|
110
|
+
could_contain_kw_args?(args) &&
|
111
|
+
(args.last.empty? || args.last.keys.any? { |x| x.is_a?(Symbol) })
|
112
|
+
end
|
88
113
|
end
|
89
114
|
|
90
115
|
# Without considering what the last arg is, could it
|
@@ -282,7 +307,7 @@ module RSpec
|
|
282
307
|
|
283
308
|
def initialize(signature, args=[])
|
284
309
|
@signature = signature
|
285
|
-
@non_kw_args, @kw_args = split_args(
|
310
|
+
@non_kw_args, @kw_args = split_args(args.clone)
|
286
311
|
@min_non_kw_args = @max_non_kw_args = @non_kw_args
|
287
312
|
@arbitrary_kw_args = @unlimited_args = false
|
288
313
|
end
|
@@ -362,7 +387,7 @@ module RSpec
|
|
362
387
|
!@unlimited_args || @signature.unlimited_args?
|
363
388
|
end
|
364
389
|
|
365
|
-
def split_args(
|
390
|
+
def split_args(args)
|
366
391
|
kw_args = if @signature.has_kw_args_in?(args) && !RubyFeatures.kw_arg_separation?
|
367
392
|
last = args.pop
|
368
393
|
non_kw_args = last.reject { |k, _| k.is_a?(Symbol) }
|
@@ -395,13 +420,13 @@ module RSpec
|
|
395
420
|
class LooseSignatureVerifier < MethodSignatureVerifier
|
396
421
|
private
|
397
422
|
|
398
|
-
def split_args(
|
423
|
+
def split_args(args)
|
399
424
|
if RSpec::Support.is_a_matcher?(args.last) && @signature.could_contain_kw_args?(args)
|
400
425
|
args.pop
|
401
426
|
@signature = SignatureWithKeywordArgumentsMatcher.new(@signature)
|
402
427
|
end
|
403
428
|
|
404
|
-
super(
|
429
|
+
super(args)
|
405
430
|
end
|
406
431
|
|
407
432
|
# If a matcher is used in a signature in place of keyword arguments, all
|
@@ -12,13 +12,25 @@ module RSpec
|
|
12
12
|
def one_line_header(line_number=2)
|
13
13
|
"-1,#{line_number} +1,#{line_number}"
|
14
14
|
end
|
15
|
-
|
15
|
+
elsif ::Diff::LCS::VERSION.to_f < 1.6
|
16
16
|
def one_line_header(_=2)
|
17
17
|
"-1 +1"
|
18
18
|
end
|
19
|
+
else
|
20
|
+
def one_line_header(line_number=2)
|
21
|
+
if line_number - 1 == 1
|
22
|
+
"-1 +1"
|
23
|
+
else
|
24
|
+
"-1,#{line_number - 1} +1,#{line_number - 1}"
|
25
|
+
end
|
26
|
+
end
|
19
27
|
end
|
20
28
|
|
21
|
-
if Diff::LCS::VERSION.to_f
|
29
|
+
if ::Diff::LCS::VERSION.to_f > 1.5
|
30
|
+
def removing_two_line_header
|
31
|
+
"-1,2 +0,0"
|
32
|
+
end
|
33
|
+
elsif Diff::LCS::VERSION.to_f < 1.4 || Diff::LCS::VERSION >= "1.4.4"
|
22
34
|
def removing_two_line_header
|
23
35
|
"-1,3 +1"
|
24
36
|
end
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Chelimsky
|
@@ -10,16 +10,15 @@ authors:
|
|
10
10
|
- Sam Phippen
|
11
11
|
- Xaviery Shay
|
12
12
|
- Bradley Schaefer
|
13
|
-
autorequire:
|
14
13
|
bindir: bin
|
15
14
|
cert_chain:
|
16
15
|
- |
|
17
16
|
-----BEGIN CERTIFICATE-----
|
18
|
-
|
17
|
+
MIIFvjCCA6agAwIBAgIJAPXjfUbCjdXVMA0GCSqGSIb3DQEBCwUAMIGAMQswCQYD
|
19
18
|
VQQGEwJVUzETMBEGA1UECAwKV2FzaGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEO
|
20
19
|
MAwGA1UECgwFUlNwZWMxEzARBgNVBAMMCnJzcGVjLmluZm8xJTAjBgkqhkiG9w0B
|
21
|
-
|
22
|
-
|
20
|
+
CQEWFnJzcGVjQGdvb2dsZWdyb3Vwcy5jb20wHhcNMjUwMjA2MTE0NjU2WhcNMjYw
|
21
|
+
MjA2MTE0NjU2WjCBgDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldhc2hpbmd0b24x
|
23
22
|
EDAOBgNVBAcMB1NlYXR0bGUxDjAMBgNVBAoMBVJTcGVjMRMwEQYDVQQDDApyc3Bl
|
24
23
|
Yy5pbmZvMSUwIwYJKoZIhvcNAQkBFhZyc3BlY0Bnb29nbGVncm91cHMuY29tMIIC
|
25
24
|
IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsSmjgcHaKlD0jizRJowi2bGI
|
@@ -33,22 +32,21 @@ cert_chain:
|
|
33
32
|
Xeh3EVdWY3vMB1pkhPwlsenpcmj5gOzrd54lELOVbCGHCf48iSqeflY2Lhe0pvzK
|
34
33
|
blXCJBDmtrebvus291rM/dHcbEfK1SVd5Wut/n131iouf6dnNCFskFygDcgBbthC
|
35
34
|
gpEMqf80lEmhX59VUsm0Pv6OEo+ZPHBvXPiJA6DShQh9t3YtpwyA8uVDMbT/i32u
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
+
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
F3MdtaDehhjC
|
35
|
+
2FUsqZbbJcCmkBrGposCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
|
36
|
+
HQYDVR0OBBYEFPPvQ5XT0Nvuhi6k+hrWVv35J+TeMA0GCSqGSIb3DQEBCwUAA4IC
|
37
|
+
AQBGBr0ll2yLrkO6IeK5Q7qZFnANaUCKfi6Of9VztZJXgKAU5KAQxyOidGktoA5N
|
38
|
+
lp+bFKudRkW8jSehqoNaNBdSZ9Bc07EGMXIhUFJZF9rq7Z2SKPwUm6EaSsBK13QR
|
39
|
+
U4K6wuaw5ZJSFzklapoGOJRGnFlnNtlhNFY6+tTwCeblwZbcuYGyGY8+Rg7GbyVl
|
40
|
+
3Tr4Gi1aS/qG/MDXKdE8HWm39dmaAMdbw6dg1VBd0JrX2VqH7xvE1dM/D3OlKrNp
|
41
|
+
gNFRNJig3Y8qPjocZR0cGkhgZoC9wribWxHSNawZm4CoV3fja2HNx9QyM7BaB+as
|
42
|
+
yuqAiBbA7vBcyc8nKATip3mxbyXYXoDD7nmO8JCPP7O/WsgG+U/B2a0kPdvYFoxE
|
43
|
+
Q0Js3GtFCuMvL+0rifqdxBOLtu0Pw9q4RvToTJIl2IR6eTgCb82B1hw9qKf7PjuL
|
44
|
+
BoEsYjjDhGw6FZvcJG8O6uj7aB+z4aF21YR74UGL7sq/RIPNNez5JI95jTGfqCPy
|
45
|
+
6yo0w3zja3yg28QK3Fj+tbOHeSLv9SDQWi/1jiPprGzbxGvbVvjvX11YZc46vkmY
|
46
|
+
AwP+qZPPf97FXXZGEGIYhhHpnj+Ltx9nCetRPiZ4rvYBcXgCWVQSg6eiEofrMwn/
|
47
|
+
AKMCABhZ1Y2eATsfMgdkmIZk7JIPZiSi6eUxPiCMP9M/pw==
|
50
48
|
-----END CERTIFICATE-----
|
51
|
-
date:
|
49
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
52
50
|
dependencies:
|
53
51
|
- !ruby/object:Gem::Dependency
|
54
52
|
name: rake
|
@@ -120,16 +118,16 @@ files:
|
|
120
118
|
- lib/rspec/support/version.rb
|
121
119
|
- lib/rspec/support/warnings.rb
|
122
120
|
- lib/rspec/support/with_keywords_when_needed.rb
|
123
|
-
homepage: https://
|
121
|
+
homepage: https://rspec.info
|
124
122
|
licenses:
|
125
123
|
- MIT
|
126
124
|
metadata:
|
127
125
|
bug_tracker_uri: https://github.com/rspec/rspec/issues
|
128
|
-
changelog_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.
|
126
|
+
changelog_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.5/rspec-support/Changelog.md
|
129
127
|
documentation_uri: https://rspec.info/documentation/
|
130
128
|
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
131
|
-
|
132
|
-
|
129
|
+
rubygems_mfa_required: 'true'
|
130
|
+
source_code_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.5/rspec-support
|
133
131
|
rdoc_options:
|
134
132
|
- "--charset=UTF-8"
|
135
133
|
require_paths:
|
@@ -145,8 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
143
|
- !ruby/object:Gem::Version
|
146
144
|
version: '0'
|
147
145
|
requirements: []
|
148
|
-
rubygems_version: 3.
|
149
|
-
signing_key:
|
146
|
+
rubygems_version: 3.6.7
|
150
147
|
specification_version: 4
|
151
|
-
summary: rspec-support-3.13.
|
148
|
+
summary: rspec-support-3.13.5
|
152
149
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|