swd 1.2.0 → 1.3.0
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/.travis.yml +3 -3
- data/VERSION +1 -1
- data/lib/swd.rb +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3b1ef4355a0eb454bc541b4d39740444445316294bb9e23916ca9901437dc73
|
|
4
|
+
data.tar.gz: 452ca7702a025a61919fe4982d701c810c4b79be4076cad8af1efff39b635aa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 603f6c3000796cacaf8ecb852f08cfc29364443bde30073f50b23e40560eb81ee35b7e567df7479f20fefeb0581e9dff09a1ad88e0d47d9a684c5a11482f08cf
|
|
7
|
+
data.tar.gz: 513dfadd5bb60c22d351f0ce930a42272bfa8f2d2e9d110c461d782874af0d3350a8db48784669f8ccfb750dbceeefe1c8d25b858b8fdfc2e83de50adaddd5d3
|
data/.travis.yml
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.3.0
|
data/lib/swd.rb
CHANGED
|
@@ -54,6 +54,11 @@ module SWD
|
|
|
54
54
|
_http_client_ = HTTPClient.new(
|
|
55
55
|
:agent_name => "SWD (#{VERSION})"
|
|
56
56
|
)
|
|
57
|
+
|
|
58
|
+
# NOTE: httpclient gem seems stopped maintaining root certtificate set, use OS default.
|
|
59
|
+
_http_client_.ssl_config.clear_cert_store
|
|
60
|
+
_http_client_.ssl_config.cert_store.set_default_paths
|
|
61
|
+
|
|
57
62
|
_http_client_.request_filter << Debugger::RequestFilter.new if debugging?
|
|
58
63
|
http_config.try(:call, _http_client_)
|
|
59
64
|
_http_client_
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nov matake
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-10-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httpclient
|
|
@@ -174,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
174
174
|
- !ruby/object:Gem::Version
|
|
175
175
|
version: '0'
|
|
176
176
|
requirements: []
|
|
177
|
-
rubygems_version: 3.
|
|
177
|
+
rubygems_version: 3.1.4
|
|
178
178
|
signing_key:
|
|
179
179
|
specification_version: 4
|
|
180
180
|
summary: SWD (Simple Web Discovery) Client Library
|