watson-assistant 1.0.0 → 1.0.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/lib/watson/assistant.rb +2 -2
- data/lib/watson/assistant/version.rb +1 -1
- data/watson-assistant.gemspec +2 -2
- 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: 488e66f4382a17cd46024951269037c2d62261e65c08e728d300d01125522604
|
4
|
+
data.tar.gz: 28d1cfa0eddca4c812e9a59593adbadfb8fc53e362f9425d2207c651699d0376
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e78c51a679f9701cccbfd7f845dc89caa1e7e1e82e6245bbe088103e40fecda3142b508913e1a445a9d69c19d9bfd002df685d0d64bc7bcd8501ffbb6f01c81
|
7
|
+
data.tar.gz: 9b0b07783abc9eb6a8d2d1da380ef97c0abf26c3174bd98bbb43b7973c9fa1aad4232975b38abf139b6b456db252bb88a18d5d317cbec0aa9fb3fe7e106d4358
|
data/lib/watson/assistant.rb
CHANGED
@@ -11,8 +11,8 @@ module Watson
|
|
11
11
|
|
12
12
|
class Dialog
|
13
13
|
def initialize(username: "", password: "", workspace_id: "")
|
14
|
-
url = "https://#{username}:#{password}@gateway.watsonplatform.net/
|
15
|
-
version="
|
14
|
+
url = "https://#{username}:#{password}@gateway.watsonplatform.net/assistant/api"
|
15
|
+
version="2018-02-16"
|
16
16
|
@endpoint = "#{url}/v1/workspaces/#{workspace_id}/message?version=#{version}"
|
17
17
|
end
|
18
18
|
|
data/watson-assistant.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["alpha.netzilla"]
|
10
10
|
spec.email = ["alpha.netzilla@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{Client library to use the IBM Watson
|
13
|
-
spec.description = %q{Client library to use the IBM Watson
|
12
|
+
spec.summary = %q{Client library to use the IBM Watson Assistant service}
|
13
|
+
spec.description = %q{Client library to use the IBM Watson Assistant service}
|
14
14
|
spec.homepage = "https://github.com/alpha-netzilla/watson-assistant.git"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: watson-assistant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- alpha.netzilla
|
@@ -80,7 +80,7 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '3.3'
|
83
|
-
description: Client library to use the IBM Watson
|
83
|
+
description: Client library to use the IBM Watson Assistant service
|
84
84
|
email:
|
85
85
|
- alpha.netzilla@gmail.com
|
86
86
|
executables: []
|
@@ -124,5 +124,5 @@ rubyforge_project:
|
|
124
124
|
rubygems_version: 2.7.6
|
125
125
|
signing_key:
|
126
126
|
specification_version: 4
|
127
|
-
summary: Client library to use the IBM Watson
|
127
|
+
summary: Client library to use the IBM Watson Assistant service
|
128
128
|
test_files: []
|