webmock 3.7.4 → 3.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1686147ccfab8544a31edc2663ec653fd612ec24956b10efa792936017b8c93
4
- data.tar.gz: 3cbd58ba37e68fde487a868dcc04a1587ef4b3bad15890d14840aedf259e9035
3
+ metadata.gz: 27c0b6ee25eb2a1a31df70a1725d3fcda71aec62460d79b3ba7e05109d602fc1
4
+ data.tar.gz: 07a3ae5f5d93e5c5b86ddae8ab4f351c48777d98a80d4f997faa062b5ca3619a
5
5
  SHA512:
6
- metadata.gz: 9ad2b810e3a37bbc275ec55b609497c8c291fb8d8443f4592d0b9c064493aaefcbdee4f2ed63e1cce943d74691185026b1845c99b4da40248293b4d5def34f44
7
- data.tar.gz: fe611e11baff4dcb0b6abdc15c363a49e3f63041e505a09e602a3c014064e7b5105ad3ca3f5dd0273fd5d9e22c103cc0e294282d61193456acc890ba8aac7495
6
+ metadata.gz: 13c2debfa3694d911cb44abb89be6f205427dc952fa3e3680d5a0035807c5443f2dace34fe2135f5ecd53bf6da6e206b90f7ee9231f6a8251d8ac79d4ce00e1a
7
+ data.tar.gz: 7bdd1a5b5df68f92eb75ef2686a95cf0a40423d603177470e2940c0317f87e3b73aba8d92547eaad34d3a5225d8627ac026e964a09280d7259c5b272321619c0
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.7.5
4
+
5
+ * Suppress Excon warning generated by extra key
6
+
7
+ Thanks to [Marco Costa](https://github.com/marcotc)
8
+
3
9
  ## 3.7.4
4
10
 
5
11
  * Resetting memoized response fields in Curb adapter.
data/README.md CHANGED
@@ -1113,7 +1113,7 @@ People who submitted patches and new features or suggested improvements. Many th
1113
1113
  * Alex Junger
1114
1114
  * Orien Madgwick
1115
1115
  * Andrei Sidorov
1116
-
1116
+ * Marco Costa
1117
1117
 
1118
1118
  For a full list of contributors you can visit the
1119
1119
  [contributors](https://github.com/bblimke/webmock/contributors) page.
@@ -159,4 +159,7 @@ if defined?(Excon)
159
159
  end
160
160
  end
161
161
  end
162
+
163
+ # Suppresses Excon connection argument validation warning
164
+ Excon::VALID_CONNECTION_KEYS << :__construction_args
162
165
  end
@@ -1,3 +1,3 @@
1
1
  module WebMock
2
- VERSION = '3.7.4' unless defined?(::WebMock::VERSION)
2
+ VERSION = '3.7.5' unless defined?(::WebMock::VERSION)
3
3
  end
@@ -28,6 +28,8 @@ module ExconSpecHelper
28
28
  res
29
29
  end
30
30
 
31
+ Excon.set_raise_on_warnings!(true)
32
+
31
33
  OpenStruct.new \
32
34
  body: response.body,
33
35
  headers: headers,
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.7.4
4
+ version: 3.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bartosz Blimke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-16 00:00:00.000000000 Z
11
+ date: 2019-09-17 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.7.4/CHANGELOG.md
411
- documentation_uri: https://www.rubydoc.info/gems/webmock/3.7.4
412
- source_code_uri: https://github.com/bblimke/webmock/tree/v3.7.4
410
+ changelog_uri: https://github.com/bblimke/webmock/blob/v3.7.5/CHANGELOG.md
411
+ documentation_uri: https://www.rubydoc.info/gems/webmock/3.7.5
412
+ source_code_uri: https://github.com/bblimke/webmock/tree/v3.7.5
413
413
  wiki_uri: https://github.com/bblimke/webmock/wiki
414
414
  post_install_message:
415
415
  rdoc_options: []