watson-assistant 1.0.4 → 1.0.5

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
  SHA256:
3
- metadata.gz: be5337b37d85e9265f8ccf81d1ee2d26c6b7e0444a6b79a4706c282b9d0022c1
4
- data.tar.gz: a851a5b445a381b1d979c6fafc9de80ba57541bdc5ae927308d10d29756e4f15
3
+ metadata.gz: f64e0346348a5061e8991030b46ad9b354e13f6fbbbc010a550647b80c4ccfd6
4
+ data.tar.gz: 8c44a215c328cde4390d5c3948de14311e591613f23ec6ad5a6ba6be25fd870b
5
5
  SHA512:
6
- metadata.gz: 6df070cb49ddbc6ede92b6547b9e318bbcbca6da3505ca38524bef2e77f13c0a14ad417cd1b15ba82d7362db9193f56563de2d6d043b29da796a8a9224dd3164
7
- data.tar.gz: e034e3a6179bfe3ec28e8b37808112997f66f614a566f5078f4c4c8b08fbbbcd9007597fadd9b8131ef8e32608fe8faa88cec0a1c4847128dc9eafb8e56ca777
6
+ metadata.gz: 5627c957be62c43d0e7a8b7016d3cd33367cec06e7f64bafef06e64786dfec268bdb3d97137f62e42fa14cce86b79e52fd2ee6a3c02d031383e980f676047607
7
+ data.tar.gz: 200ddd3c09a1b25d8202282d2a6c146b7c79c3bd809754e7b235c65d229b33cce47feac540618a64fcac057c98289bf947cba723db042512188e7fba73552eaf
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- watson-assistant (1.0.3)
4
+ watson-assistant (1.0.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -38,7 +38,7 @@ export STORAGE="hash" # Default
38
38
  ```ruby
39
39
  require 'watson/assistant'
40
40
 
41
- manager = Watson::Assistant::Manage.new(
41
+ manager = Watson::Assistant::Manager.new(
42
42
  username: ENV["USERNAME"],
43
43
  password: ENV["PASSWORD"],
44
44
  workspace_id: ENV["WORKSPACE_ID"],
@@ -2,5 +2,5 @@ require 'rest-client'
2
2
  require "json"
3
3
  require "thread"
4
4
  require "redis"
5
- require "watson/assistant/manage"
5
+ require "watson/assistant/manager"
6
6
 
@@ -4,7 +4,7 @@ require "watson/assistant/dialog"
4
4
 
5
5
  module Watson
6
6
  module Assistant
7
- class Manage
7
+ class Manager
8
8
  def initialize(config)
9
9
  storage = config[:storage] || "hash"
10
10
  @cnv = Dialog.new(
@@ -1,5 +1,5 @@
1
1
  module Watson
2
2
  module Assistant
3
- VERSION = "1.0.4"
3
+ VERSION = "1.0.5"
4
4
  end
5
5
  end
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
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - alpha.netzilla
@@ -100,7 +100,7 @@ files:
100
100
  - bin/setup
101
101
  - lib/watson/assistant.rb
102
102
  - lib/watson/assistant/dialog.rb
103
- - lib/watson/assistant/manage.rb
103
+ - lib/watson/assistant/manager.rb
104
104
  - lib/watson/assistant/version.rb
105
105
  - watson-assistant.gemspec
106
106
  homepage: https://github.com/alpha-netzilla/watson-assistant.git