watson-conversation 1.0.6 → 1.0.7
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 +5 -5
- data/README.md +5 -1
- data/lib/watson/conversation.rb +1 -0
- data/lib/watson/conversation/version.rb +1 -1
- data/watson-conversation.gemspec +6 -0
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: dac591b3232da7525b3e1ddb0e9eeb071f43f53ba993bc7d2824f960feea4b8a
|
4
|
+
data.tar.gz: 16c6c5634bc3ccee2c62da4090ac49d4d97c1672461ec3286d2fefdfed7e9187
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc661ad49a02146d2298607a216f12065fa0ad200c2feb51de55d48a40ed7d07f98114e139fec6482f2ddb05bc166777e5d243c57a3b34562cd2e4706764c741
|
7
|
+
data.tar.gz: 480f5decfe1b6777f49d3015eaa64b6a12f54499e5967130da262f692b02631734052cda66eaf0a32771d275dcbd70827e005e6dae3ca8e938d765c077d661f2
|
data/README.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# Watson::Conversation
|
2
|
+
DEPRICATED
|
2
3
|
|
3
|
-
|
4
|
+
Watson Conversation has been renamed to Watson Assistant.
|
5
|
+
|
6
|
+
I stop this library maintenance, and migrate it to a "Watson Assistant" library.
|
7
|
+
https://github.com/alpha-netzilla/watson-assistant
|
4
8
|
|
5
9
|
## Installation
|
6
10
|
|
data/lib/watson/conversation.rb
CHANGED
@@ -116,6 +116,7 @@ module Watson
|
|
116
116
|
|
117
117
|
class ManageDialog
|
118
118
|
def initialize(username: "", password: "", workspace_id: "", storage: "hash")
|
119
|
+
warn "[DEPRECATION] This gem has been renamed to `watson-assistant` and will no longer be supported. Please switch to `watson-assistant` as soon as possible."
|
119
120
|
@cnv = Dialog.new(
|
120
121
|
username: username,
|
121
122
|
password: password,
|
data/watson-conversation.gemspec
CHANGED
@@ -27,4 +27,10 @@ Gem::Specification.new do |spec|
|
|
27
27
|
spec.add_development_dependency "rest-client", "~> 2.0"
|
28
28
|
spec.add_development_dependency "json", "~> 2.0"
|
29
29
|
spec.add_development_dependency "redis", "~> 3.3"
|
30
|
+
|
31
|
+
spec.post_install_message = <<-MESSAGE
|
32
|
+
! The 'watson-conversation' gem has been deprecated and has been replaced by 'watson-assistant'.
|
33
|
+
! See: https://rubygems.org/gems/watson-assistant
|
34
|
+
! And: https://github.com/alpha-netzilla/watson-assistant
|
35
|
+
MESSAGE
|
30
36
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: watson-conversation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- alpha.netzilla
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -118,7 +118,10 @@ homepage: https://github.com/alpha-netzilla/watson-conversation.git
|
|
118
118
|
licenses:
|
119
119
|
- MIT
|
120
120
|
metadata: {}
|
121
|
-
post_install_message:
|
121
|
+
post_install_message: |2
|
122
|
+
! The 'watson-conversation' gem has been deprecated and has been replaced by 'watson-assistant'.
|
123
|
+
! See: https://rubygems.org/gems/watson-assistant
|
124
|
+
! And: https://github.com/alpha-netzilla/watson-assistant
|
122
125
|
rdoc_options: []
|
123
126
|
require_paths:
|
124
127
|
- lib
|
@@ -134,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
137
|
version: '0'
|
135
138
|
requirements: []
|
136
139
|
rubyforge_project:
|
137
|
-
rubygems_version: 2.
|
140
|
+
rubygems_version: 2.7.6
|
138
141
|
signing_key:
|
139
142
|
specification_version: 4
|
140
143
|
summary: Client library to use the IBM Watson Conversation service
|