rspec-rails 8.0.0 → 8.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
- checksums.yaml.gz.sig +0 -0
- data/Changelog.md +11 -1
- data/lib/rspec/rails/matchers/active_job.rb +8 -0
- data/lib/rspec/rails/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +10 -10
- 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: a296393e90c9466d89d8e946f64e09daf49b5f390da4e98ffedd316a58c038ec
|
4
|
+
data.tar.gz: fff6e0f55e68a95b88fc337cf440bbd56d15273272101612fbedf30db5115bd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a3f50b7208f21d7a28a05ad89c18adbc028f6a5a31bedfe49f4d8a43cfdf4f7d5182f49e0cd4bac8d9d5af231e6b09ac1e22fff1672d576540c859b8e126655
|
7
|
+
data.tar.gz: 587cdba70db89f06245bacdd6a691612a18282f7ff26e375ec7437039f919778dd83c275f61f38dd5a0abde7d12d507335fcb661e56113e32166e99916320ef4
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/Changelog.md
CHANGED
@@ -1,7 +1,17 @@
|
|
1
1
|
### Development
|
2
|
-
[Full Changelog](https://github.com/rspec/rspec-rails/compare/
|
2
|
+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v8.0.1...8-0-maintenance)
|
3
|
+
|
4
|
+
### 8.0.1 / 2025-06-19
|
5
|
+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v8.0.0...v8.0.1)
|
6
|
+
|
7
|
+
Bug Fixes:
|
8
|
+
|
9
|
+
* Make the `have_been_performed` / `have_been_enqueued` return `false` for
|
10
|
+
`supports_block_expectations?` as they don't supporting block expectations.
|
11
|
+
(Sam Kidman, rspec/rspec-rails#2851)
|
3
12
|
|
4
13
|
### 8.0.0 / 2025-04-30
|
14
|
+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v7.1.1...v8.0.0)
|
5
15
|
|
6
16
|
Enhancements:
|
7
17
|
|
@@ -320,6 +320,10 @@ module RSpec
|
|
320
320
|
|
321
321
|
!matches?(proc)
|
322
322
|
end
|
323
|
+
|
324
|
+
def supports_block_expectations?
|
325
|
+
false
|
326
|
+
end
|
323
327
|
end
|
324
328
|
|
325
329
|
# @private
|
@@ -352,6 +356,10 @@ module RSpec
|
|
352
356
|
@job = job
|
353
357
|
check(queue_adapter.performed_jobs)
|
354
358
|
end
|
359
|
+
|
360
|
+
def supports_block_expectations?
|
361
|
+
false
|
362
|
+
end
|
355
363
|
end
|
356
364
|
end
|
357
365
|
|
data/lib/rspec/rails/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-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.0.
|
4
|
+
version: 8.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Chelimsky
|
@@ -42,7 +42,7 @@ cert_chain:
|
|
42
42
|
AwP+qZPPf97FXXZGEGIYhhHpnj+Ltx9nCetRPiZ4rvYBcXgCWVQSg6eiEofrMwn/
|
43
43
|
AKMCABhZ1Y2eATsfMgdkmIZk7JIPZiSi6eUxPiCMP9M/pw==
|
44
44
|
-----END CERTIFICATE-----
|
45
|
-
date:
|
45
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
46
46
|
dependencies:
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: actionpack
|
@@ -162,28 +162,28 @@ dependencies:
|
|
162
162
|
requirements:
|
163
163
|
- - "~>"
|
164
164
|
- !ruby/object:Gem::Version
|
165
|
-
version:
|
165
|
+
version: 2.3.1
|
166
166
|
type: :development
|
167
167
|
prerelease: false
|
168
168
|
version_requirements: !ruby/object:Gem::Requirement
|
169
169
|
requirements:
|
170
170
|
- - "~>"
|
171
171
|
- !ruby/object:Gem::Version
|
172
|
-
version:
|
172
|
+
version: 2.3.1
|
173
173
|
- !ruby/object:Gem::Dependency
|
174
174
|
name: cucumber
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
176
176
|
requirements:
|
177
|
-
- - "
|
177
|
+
- - ">="
|
178
178
|
- !ruby/object:Gem::Version
|
179
|
-
version: '
|
179
|
+
version: '10.0'
|
180
180
|
type: :development
|
181
181
|
prerelease: false
|
182
182
|
version_requirements: !ruby/object:Gem::Requirement
|
183
183
|
requirements:
|
184
|
-
- - "
|
184
|
+
- - ">="
|
185
185
|
- !ruby/object:Gem::Version
|
186
|
-
version: '
|
186
|
+
version: '10.0'
|
187
187
|
description: rspec-rails integrates the Rails testing helpers into RSpec.
|
188
188
|
email: rspec@googlegroups.com
|
189
189
|
executables: []
|
@@ -297,7 +297,7 @@ licenses:
|
|
297
297
|
- MIT
|
298
298
|
metadata:
|
299
299
|
bug_tracker_uri: https://github.com/rspec/rspec-rails/issues
|
300
|
-
changelog_uri: https://github.com/rspec/rspec-rails/blob/v8.0.
|
300
|
+
changelog_uri: https://github.com/rspec/rspec-rails/blob/v8.0.1/Changelog.md
|
301
301
|
documentation_uri: https://rspec.info/documentation/
|
302
302
|
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
303
303
|
source_code_uri: https://github.com/rspec/rspec-rails
|
@@ -316,7 +316,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
316
316
|
- !ruby/object:Gem::Version
|
317
317
|
version: '0'
|
318
318
|
requirements: []
|
319
|
-
rubygems_version: 3.6.
|
319
|
+
rubygems_version: 3.6.7
|
320
320
|
specification_version: 4
|
321
321
|
summary: RSpec for Rails
|
322
322
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|