ibm_watson 1.0.0.rc3 → 1.0.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/README.md +8 -8
- data/lib/ibm_watson.rb +2 -9
- data/lib/ibm_watson/assistant_v1.rb +5 -2
- data/lib/ibm_watson/assistant_v2.rb +3 -0
- data/lib/ibm_watson/authenticators.rb +15 -0
- data/lib/ibm_watson/discovery_v1.rb +79 -15
- data/lib/ibm_watson/speech_to_text_v1.rb +3 -2
- data/lib/ibm_watson/text_to_speech_v1.rb +29 -50
- data/lib/ibm_watson/tone_analyzer_v3.rb +2 -1
- data/lib/ibm_watson/version.rb +1 -1
- data/lib/ibm_watson/visual_recognition_v4.rb +658 -0
- data/test/integration/test_discovery_v1.rb +1 -1
- data/test/integration/test_speech_to_text_v1.rb +1 -1
- data/test/integration/test_tone_analyzer_v3.rb +4 -4
- data/test/integration/test_visual_recognition_v4.rb +78 -0
- data/test/unit/test_discovery_v1.rb +25 -0
- data/test/unit/test_visual_recognition_v4.rb +412 -0
- metadata +13 -10
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ibm_watson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Max Nussbaum
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 1.0
|
75
|
+
version: '1.0'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 1.0
|
82
|
+
version: '1.0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: jwt
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -212,14 +212,14 @@ dependencies:
|
|
212
212
|
requirements:
|
213
213
|
- - "~>"
|
214
214
|
- !ruby/object:Gem::Version
|
215
|
-
version: '
|
215
|
+
version: '13.0'
|
216
216
|
type: :development
|
217
217
|
prerelease: false
|
218
218
|
version_requirements: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
220
|
- - "~>"
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version: '
|
222
|
+
version: '13.0'
|
223
223
|
- !ruby/object:Gem::Dependency
|
224
224
|
name: rubocop
|
225
225
|
requirement: !ruby/object:Gem::Requirement
|
@@ -274,6 +274,7 @@ files:
|
|
274
274
|
- lib/ibm_watson.rb
|
275
275
|
- lib/ibm_watson/assistant_v1.rb
|
276
276
|
- lib/ibm_watson/assistant_v2.rb
|
277
|
+
- lib/ibm_watson/authenticators.rb
|
277
278
|
- lib/ibm_watson/common.rb
|
278
279
|
- lib/ibm_watson/compare_comply_v1.rb
|
279
280
|
- lib/ibm_watson/discovery_v1.rb
|
@@ -286,6 +287,7 @@ files:
|
|
286
287
|
- lib/ibm_watson/tone_analyzer_v3.rb
|
287
288
|
- lib/ibm_watson/version.rb
|
288
289
|
- lib/ibm_watson/visual_recognition_v3.rb
|
290
|
+
- lib/ibm_watson/visual_recognition_v4.rb
|
289
291
|
- lib/ibm_watson/websocket/recognize_callback.rb
|
290
292
|
- lib/ibm_watson/websocket/speech_to_text_websocket_listener.rb
|
291
293
|
- rakefile
|
@@ -303,6 +305,7 @@ files:
|
|
303
305
|
- test/integration/test_text_to_speech_v1.rb
|
304
306
|
- test/integration/test_tone_analyzer_v3.rb
|
305
307
|
- test/integration/test_visual_recognition_v3.rb
|
308
|
+
- test/integration/test_visual_recognition_v4.rb
|
306
309
|
- test/test_helper.rb
|
307
310
|
- test/unit/test_assistant_v1.rb
|
308
311
|
- test/unit/test_assistant_v2.rb
|
@@ -318,6 +321,7 @@ files:
|
|
318
321
|
- test/unit/test_tone_analyzer_v3.rb
|
319
322
|
- test/unit/test_vcap_using_personality_insights.rb
|
320
323
|
- test/unit/test_visual_recognition_v3.rb
|
324
|
+
- test/unit/test_visual_recognition_v4.rb
|
321
325
|
homepage: https://www.github.com/watson-developer-cloud
|
322
326
|
licenses:
|
323
327
|
- Apache-2.0
|
@@ -336,12 +340,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
336
340
|
version: '2.3'
|
337
341
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
338
342
|
requirements:
|
339
|
-
- - "
|
343
|
+
- - ">="
|
340
344
|
- !ruby/object:Gem::Version
|
341
|
-
version:
|
345
|
+
version: '0'
|
342
346
|
requirements: []
|
343
|
-
|
344
|
-
rubygems_version: 2.7.8
|
347
|
+
rubygems_version: 3.0.6
|
345
348
|
signing_key:
|
346
349
|
specification_version: 4
|
347
350
|
summary: Official client library to use the IBM Watson Services
|