webmock 3.11.0 → 3.11.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
- data/CHANGELOG.md +7 -1
- data/README.md +1 -0
- data/lib/webmock/http_lib_adapters/async_http_client_adapter.rb +2 -2
- data/lib/webmock/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc97c874689b792ce7a6a84750b324c2cb610fd667c0fbc341dccaf14cc26fc1
|
|
4
|
+
data.tar.gz: 05c2e55ba9554c1066f6631c5b5beabfafc05904ce811aef7ceb944b99d5367d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27824be10a455582f88966a60539c2f2af49fca630e7ef5f9c49ef342c22d1f28e4abd3fe52a4882cdeb756bb04853798d24f43a4a64575f9e070f287d1cb905
|
|
7
|
+
data.tar.gz: 37cbd35aabaff9f013a5305163ef1420dd00b4d3635e1c70bedb246e44e152c189cff4cca9ff561a89220b68e876d80cdfa31aeffdcd7841a36105fa96be2904
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
# 3.11.1
|
|
4
|
+
|
|
5
|
+
* Compatibility with async-http 0.54+
|
|
6
|
+
|
|
7
|
+
Thanks to [Jun Jiang](https://github.com/jasl)
|
|
8
|
+
|
|
3
9
|
# 3.11.0
|
|
4
10
|
|
|
5
11
|
* Added support for `features` in http.rb adapter.
|
|
6
12
|
|
|
7
|
-
Thanks to [Carl (ce07c3)](https://github.com/ce07c3)
|
|
13
|
+
Thanks to [Carl (ce07c3)](https://github.com/ce07c3)
|
|
8
14
|
|
|
9
15
|
# 3.10.0
|
|
10
16
|
|
data/README.md
CHANGED
|
@@ -1152,6 +1152,7 @@ People who submitted patches and new features or suggested improvements. Many th
|
|
|
1152
1152
|
* Jesse Bowes
|
|
1153
1153
|
* Marek Kasztelnik
|
|
1154
1154
|
* ce07c3
|
|
1155
|
+
* Jun Jiang
|
|
1155
1156
|
|
|
1156
1157
|
For a full list of contributors you can visit the
|
|
1157
1158
|
[contributors](https://github.com/bblimke/webmock/contributors) page.
|
|
@@ -40,8 +40,8 @@ if defined?(Async::HTTP)
|
|
|
40
40
|
)
|
|
41
41
|
webmock_endpoint = WebMockEndpoint.new(scheme, authority, protocol)
|
|
42
42
|
|
|
43
|
-
@network_client = WebMockClient.new(endpoint,
|
|
44
|
-
@webmock_client = WebMockClient.new(webmock_endpoint,
|
|
43
|
+
@network_client = WebMockClient.new(endpoint, **options)
|
|
44
|
+
@webmock_client = WebMockClient.new(webmock_endpoint, **options)
|
|
45
45
|
|
|
46
46
|
@scheme = scheme
|
|
47
47
|
@authority = authority
|
data/lib/webmock/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webmock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.11.
|
|
4
|
+
version: 3.11.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bartosz Blimke
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|
|
@@ -407,9 +407,9 @@ licenses:
|
|
|
407
407
|
- MIT
|
|
408
408
|
metadata:
|
|
409
409
|
bug_tracker_uri: https://github.com/bblimke/webmock/issues
|
|
410
|
-
changelog_uri: https://github.com/bblimke/webmock/blob/v3.11.
|
|
411
|
-
documentation_uri: https://www.rubydoc.info/gems/webmock/3.11.
|
|
412
|
-
source_code_uri: https://github.com/bblimke/webmock/tree/v3.11.
|
|
410
|
+
changelog_uri: https://github.com/bblimke/webmock/blob/v3.11.1/CHANGELOG.md
|
|
411
|
+
documentation_uri: https://www.rubydoc.info/gems/webmock/3.11.1
|
|
412
|
+
source_code_uri: https://github.com/bblimke/webmock/tree/v3.11.1
|
|
413
413
|
wiki_uri: https://github.com/bblimke/webmock/wiki
|
|
414
414
|
post_install_message:
|
|
415
415
|
rdoc_options: []
|