ibm_watson 0.15.0 → 0.15.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/README.md +2 -2
- data/lib/ibm_watson/common.rb +2 -0
- data/lib/ibm_watson/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c59d5cb848103dc98e1b488bc062d495989460a6e79e98db003355801b85de2
|
4
|
+
data.tar.gz: 444e6be50d0c784cb164dfa0794aab63d90ef6a002936e1c593b523451acbfb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64144c6053163dbb90b811d0bf631c8e4c110775df5290f87523d3ce24ca263f15c8d8f7a28dcdbf3171f8a15d881d897feb553ef20c05b162e85ee6b3f9633d
|
7
|
+
data.tar.gz: 9aa760289079ef8e17b738abfd883fabea4c0cd4131e446c7719171ab0358e1fb93c687d460f4434b3983716526845836e635043bbc044cb03625cbbfd7d5271
|
data/README.md
CHANGED
@@ -286,7 +286,7 @@ assistant.configure_http_client(
|
|
286
286
|
|
287
287
|
The HTTP client can be configured to disable SSL verification. Note that this has serious security implications - only do this if you really mean to! ⚠️
|
288
288
|
|
289
|
-
To do this, pass `
|
289
|
+
To do this, pass `disable_ssl_verification` as `true` in `configure_http_client()`, like below:
|
290
290
|
|
291
291
|
```ruby
|
292
292
|
require "ibm_watson/assistant_v1"
|
@@ -298,7 +298,7 @@ service = AssistantV1.new(
|
|
298
298
|
password: "<password>",
|
299
299
|
)
|
300
300
|
|
301
|
-
service.configure_http_client(
|
301
|
+
service.configure_http_client(disable_ssl_verification: true)
|
302
302
|
```
|
303
303
|
|
304
304
|
## Using Websockets
|
data/lib/ibm_watson/common.rb
CHANGED
data/lib/ibm_watson/version.rb
CHANGED