ibm_watson 0.15.0 → 0.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e252fa8fb5baffc01d2ba633832095e278632259761b813286d52316514c400
4
- data.tar.gz: e226b63d48d6ba39e6eaa599c96b1bf910d7f1d93fe8e9cd302b4d006bb982da
3
+ metadata.gz: 3c59d5cb848103dc98e1b488bc062d495989460a6e79e98db003355801b85de2
4
+ data.tar.gz: 444e6be50d0c784cb164dfa0794aab63d90ef6a002936e1c593b523451acbfb8
5
5
  SHA512:
6
- metadata.gz: b8e53b1c12cd0177331fa6b244cb40b119e174eaaf310c2799b6354662677bce2f248d031a7c465c8d4716f54481fde1bfaaf461c3521530d26582346551ec1c
7
- data.tar.gz: 954e5c821ec0f4a6d30613a880feeebb780301874bba272dd4e8bc7f2a558ef29815fda9ffdd5c8d1e2b13b67281da170955f960772203442d7a7c7e56c1685e
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 `disable_ssl` as `true` in `configure_http_client()`, like below:
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(disable_ssl: true)
301
+ service.configure_http_client(disable_ssl_verification: true)
302
302
  ```
303
303
 
304
304
  ## Using Websockets
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative "./version.rb"
4
+
3
5
  module IBMWatson
4
6
  # SDK Common class
5
7
  class Common
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IBMWatson
4
- VERSION = "0.15.0"
4
+ VERSION = "0.15.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ibm_watson
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Nussbaum