watson-conversation 1.0.2 → 1.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51fd3e4e381393a2edb10191de3710a1c8bb7f63
4
- data.tar.gz: 37fef914a3b92645a47a9fc2c0ff9ec847467b6f
3
+ metadata.gz: d117584788cf3105b7cb25aba7cd22b9a79c6ec6
4
+ data.tar.gz: 3721dfc946c220a0b1239f7ed1694bc61c369bc5
5
5
  SHA512:
6
- metadata.gz: a9ff82e009fb2246b3a7e4c168fa29cc8bd5a982adde1f50771ab2fc65ee91f33f1c84b96b50936e59e04ef289666cc68b60d34b0ba434140d66d74cd78f457c
7
- data.tar.gz: 2efb4b0f772396d9f4764b9f4f697609fa21348a2725314b04a3e19a8c32c271aa964eccc9b25fd1aa2f1e18b375d579199d12c753cd81ea14d63249c2e47659
6
+ metadata.gz: 141ec8b4d5e4ef6f95e637a17d6c44e651daac798bd933aef0b29d9d6a88ad7a24cded6ccb59a5456385e23435a06c7996f544977ac92b9447abe3f56a8c5d53
7
+ data.tar.gz: 2a5724c24d4c8b4256b9cb203d0ef751326c4f2e9687a8fa48c0ba34dbb68e698558953c9d692b049176ab79c696380bdbc3312291c4a1f3ca77701b7533ee95
data/README.md CHANGED
@@ -28,7 +28,9 @@ manage = Watson::Conversation::ManageDialog.new(
28
28
  password: [password],
29
29
  workspace_id: [workspace_id],
30
30
  # Where to link the freely-selected user name with the conversation_id
31
- storage: "hash" or "uri for redis like 'redis://127.0.0.1:6379'"
31
+ storage: 'hash' #means that you use Ruby hash. If you restart the app, the info will be disappeared.
32
+ # OR
33
+ storage: 'redis://127.0.0.1:6379'" #means that you use exteranl database like redis(This gem currently supports redis only).
32
34
  )
33
35
 
34
36
  # Get a greet message from a conversation service.
@@ -1,5 +1,5 @@
1
1
  module Watson
2
2
  module Conversation
3
- VERSION = "1.0.2"
3
+ VERSION = "1.0.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: watson-conversation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - alpha.netzilla