ibm_watson 1.0.0 → 1.1.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 +7 -2
- data/lib/ibm_watson.rb +1 -0
- data/lib/ibm_watson/assistant_v1.rb +22 -14
- data/lib/ibm_watson/assistant_v2.rb +7 -2
- data/lib/ibm_watson/discovery_v1.rb +2 -2
- data/lib/ibm_watson/discovery_v2.rb +762 -0
- data/lib/ibm_watson/speech_to_text_v1.rb +10 -0
- data/lib/ibm_watson/version.rb +1 -1
- data/lib/ibm_watson/visual_recognition_v4.rb +39 -6
- data/test/integration/test_assistant_v1.rb +2 -4
- data/test/integration/test_compare_comply_v1.rb +1 -1
- data/test/integration/test_discovery_v2.rb +144 -0
- data/test/unit/test_assistant_v1.rb +13 -403
- data/test/unit/test_assistant_v2.rb +8 -26
- data/test/unit/test_compare_comply_v1.rb +8 -93
- data/test/unit/test_discovery_v1.rb +10 -399
- data/test/unit/test_discovery_v2.rb +237 -0
- data/test/unit/test_visual_recognition_v4.rb +54 -131
- metadata +7 -4
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.
|
4
|
+
version: 1.1.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-11-27 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.
|
75
|
+
version: '1.1'
|
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.
|
82
|
+
version: '1.1'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: jwt
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -278,6 +278,7 @@ files:
|
|
278
278
|
- lib/ibm_watson/common.rb
|
279
279
|
- lib/ibm_watson/compare_comply_v1.rb
|
280
280
|
- lib/ibm_watson/discovery_v1.rb
|
281
|
+
- lib/ibm_watson/discovery_v2.rb
|
281
282
|
- lib/ibm_watson/language_translator_v3.rb
|
282
283
|
- lib/ibm_watson/natural_language_classifier_v1.rb
|
283
284
|
- lib/ibm_watson/natural_language_understanding_v1.rb
|
@@ -296,6 +297,7 @@ files:
|
|
296
297
|
- test/integration/test_assistant_v2.rb
|
297
298
|
- test/integration/test_compare_comply_v1.rb
|
298
299
|
- test/integration/test_discovery_v1.rb
|
300
|
+
- test/integration/test_discovery_v2.rb
|
299
301
|
- test/integration/test_iam_assistant_v1.rb
|
300
302
|
- test/integration/test_language_translator_v3.rb
|
301
303
|
- test/integration/test_natural_language_classifier_v1.rb
|
@@ -312,6 +314,7 @@ files:
|
|
312
314
|
- test/unit/test_compare_comply_v1.rb
|
313
315
|
- test/unit/test_configure_http_client.rb
|
314
316
|
- test/unit/test_discovery_v1.rb
|
317
|
+
- test/unit/test_discovery_v2.rb
|
315
318
|
- test/unit/test_language_translator_v3.rb
|
316
319
|
- test/unit/test_natural_language_classifier_v1.rb
|
317
320
|
- test/unit/test_natural_language_understanding_v1.rb
|