rspec-rails 5.1.0 → 5.1.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 +9 -1
- data/lib/rspec/rails/matchers/have_enqueued_mail.rb +1 -1
- data/lib/rspec/rails/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +7 -7
- 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: 74e5cd9c50ca6cdb830e27b5944b9777e850687cc794914ab1bf4446e48b70cc
|
|
4
|
+
data.tar.gz: d597eb4b7fb143d1e59bb0578c6e1ba3aaa974debbe9b136e49a89038c97a21b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f643165f2b131744cf26d7c77bd03f6406999cc3e243f22861b1018f408e3e2ac1f43b080814fffc33aeb9fa840f937d8d2867bc273d7c4ec502856e593e353
|
|
7
|
+
data.tar.gz: e13e2dfca09676af925920a691ceb597afd98149570773f2fd4081f8d8ca42d4d91af0946a6bd52fbb55db3326ca050fb4c8f9357a2415b24e3396c1b1972b2d
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/Changelog.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
### Development
|
|
2
|
-
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.
|
|
2
|
+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.1...5-1-maintenance)
|
|
3
|
+
|
|
4
|
+
### 5.1.1 / 2022-03-07
|
|
5
|
+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.0...v5.1.1)
|
|
6
|
+
|
|
7
|
+
Bug Fixes:
|
|
8
|
+
|
|
9
|
+
* Properly handle global id serialised arguments in `have_enqueued_mail`.
|
|
10
|
+
(Jon Rowe, #2578)
|
|
3
11
|
|
|
4
12
|
### 5.1.0 / 2022-01-26
|
|
5
13
|
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.0.3...v5.1.0)
|
|
@@ -145,7 +145,7 @@ module RSpec
|
|
|
145
145
|
if hash.key?("_aj_ruby2_keywords")
|
|
146
146
|
keywords = hash["_aj_ruby2_keywords"]
|
|
147
147
|
|
|
148
|
-
original_hash = keywords.each_with_object({}) { |
|
|
148
|
+
original_hash = keywords.each_with_object({}) { |keyword, new_hash| new_hash[keyword.to_sym] = hash[keyword] }
|
|
149
149
|
|
|
150
150
|
args + [original_hash]
|
|
151
151
|
elsif hash.key?(:args) && hash.key?(:params)
|
data/lib/rspec/rails/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.1.
|
|
4
|
+
version: 5.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Chelimsky
|
|
8
8
|
- Andy Lindeman
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain:
|
|
12
12
|
- |
|
|
@@ -44,7 +44,7 @@ cert_chain:
|
|
|
44
44
|
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
|
|
45
45
|
F3MdtaDehhjC
|
|
46
46
|
-----END CERTIFICATE-----
|
|
47
|
-
date: 2022-
|
|
47
|
+
date: 2022-03-07 00:00:00.000000000 Z
|
|
48
48
|
dependencies:
|
|
49
49
|
- !ruby/object:Gem::Dependency
|
|
50
50
|
name: actionpack
|
|
@@ -308,11 +308,11 @@ licenses:
|
|
|
308
308
|
- MIT
|
|
309
309
|
metadata:
|
|
310
310
|
bug_tracker_uri: https://github.com/rspec/rspec-rails/issues
|
|
311
|
-
changelog_uri: https://github.com/rspec/rspec-rails/blob/v5.1.
|
|
311
|
+
changelog_uri: https://github.com/rspec/rspec-rails/blob/v5.1.1/Changelog.md
|
|
312
312
|
documentation_uri: https://rspec.info/documentation/
|
|
313
313
|
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
|
314
314
|
source_code_uri: https://github.com/rspec/rspec-rails
|
|
315
|
-
post_install_message:
|
|
315
|
+
post_install_message:
|
|
316
316
|
rdoc_options:
|
|
317
317
|
- "--charset=UTF-8"
|
|
318
318
|
require_paths:
|
|
@@ -328,8 +328,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
328
328
|
- !ruby/object:Gem::Version
|
|
329
329
|
version: '0'
|
|
330
330
|
requirements: []
|
|
331
|
-
rubygems_version: 3.
|
|
332
|
-
signing_key:
|
|
331
|
+
rubygems_version: 3.1.6
|
|
332
|
+
signing_key:
|
|
333
333
|
specification_version: 4
|
|
334
334
|
summary: RSpec for Rails
|
|
335
335
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|