ibm-watson-ruby 0.0.2 → 0.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: ab996eaea3f1df5b531c786c4b85b2f1575a09cf
4
- data.tar.gz: 76ee53e5277ba39a022884c4d3b4d399ce1ebab6
3
+ metadata.gz: 0daec1c9c0c31e56047fb9c3c5919f2f1cd03b58
4
+ data.tar.gz: 9163895c9a02b6b3c1f09c51f3ba3a7320226be8
5
5
  SHA512:
6
- metadata.gz: ecc4da4c0d5616d0446b6d204d2e1d1aa210b5aa23fc9d5ad7c5ba3f121097d9e95e81b2e5df6885be705f492c4895daf93e9355e4978d0d02ebc5a1748fcaa1
7
- data.tar.gz: 8f441294399cb2a24b021b7f147970ecc3edf17f4057253eede88c2a5a943d27e73e98f06638579444bb2587664bc392d9313c086011f440a63856599d573963
6
+ metadata.gz: c56075e9e7f9d17caf464a6049f1f054649f8b0735d8343575ed6518b242994e21e265bed2f1c581de3895828a955efe341aeee33d294e11c277b4ffe302e564
7
+ data.tar.gz: 2624707fab0704153f6940c0d568d47f5a2aa8ff8c92ee504f052bd3ad0b144f0f8aec1ac538c526e773a71e2b0acf8ad0174ba734655ee71963bcde8a726110
data/.gitignore CHANGED
@@ -87,7 +87,7 @@ build-iPhoneSimulator/
87
87
 
88
88
  # for a library or gem, you might want to ignore these files since the code is
89
89
  # intended to run in multiple environments; otherwise, check them in:
90
- # Gemfile.lock
90
+ Gemfile.lock
91
91
  # .ruby-version
92
92
  # .ruby-gemset
93
93
 
data/Rakefile CHANGED
@@ -1,10 +1,8 @@
1
1
  require 'rubygems'
2
- require 'bundler'
3
- require 'rake'
4
- require 'rubygems/tasks'
2
+ require 'bundler/setup'
5
3
 
6
- Bundler.setup(:development)
4
+ Bundler.require :development
7
5
 
8
- task :build do
9
- Gem::Tasks.new(release: true)
10
- end
6
+ require 'rake'
7
+ require 'rubygems/tasks'
8
+ Gem::Tasks.new
@@ -1,7 +1,7 @@
1
1
  module IBMWatson
2
2
  module Conversation
3
3
  class DialogNode < IBMWatson::BaseModel
4
- attribute :goto, type: String
4
+ attribute :go_to, type: Hash
5
5
  attribute :output, type: Hash
6
6
  attribute :parent, type: String
7
7
  attribute :context, type: Hash
@@ -1,3 +1,3 @@
1
1
  module IBMWatson
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ibm-watson-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bram Whillock
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-25 00:00:00.000000000 Z
11
+ date: 2017-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http
@@ -144,7 +144,6 @@ extra_rdoc_files: []
144
144
  files:
145
145
  - ".gitignore"
146
146
  - Gemfile
147
- - Gemfile.lock
148
147
  - README.md
149
148
  - Rakefile
150
149
  - ibm-watson-ruby.gemspec
@@ -184,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
183
  version: '0'
185
184
  requirements: []
186
185
  rubyforge_project:
187
- rubygems_version: 2.5.2
186
+ rubygems_version: 2.5.1
188
187
  signing_key:
189
188
  specification_version: 4
190
189
  summary: IBM Watson services in ruby
data/Gemfile.lock DELETED
@@ -1,89 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- ibm-watson-ruby (0.0.2)
5
- active_attr (~> 0.10)
6
- active_attr_extended (~> 0.9)
7
- http (~> 2.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- active_attr (0.10.0)
13
- activemodel (>= 3.0.2, < 5.1)
14
- activesupport (>= 3.0.2, < 5.1)
15
- active_attr_extended (0.9.0.1)
16
- active_attr (>= 0.6.0)
17
- activemodel (4.2.8)
18
- activesupport (= 4.2.8)
19
- builder (~> 3.1)
20
- activesupport (4.2.8)
21
- i18n (~> 0.7)
22
- minitest (~> 5.1)
23
- thread_safe (~> 0.3, >= 0.3.4)
24
- tzinfo (~> 1.1)
25
- addressable (2.5.0)
26
- public_suffix (~> 2.0, >= 2.0.2)
27
- builder (3.2.3)
28
- diff-lcs (1.3)
29
- domain_name (0.5.20170223)
30
- unf (>= 0.0.5, < 1.0.0)
31
- dotenv (2.2.0)
32
- http (2.2.1)
33
- addressable (~> 2.3)
34
- http-cookie (~> 1.0)
35
- http-form_data (~> 1.0.1)
36
- http_parser.rb (~> 0.6.0)
37
- http-cookie (1.0.3)
38
- domain_name (~> 0.5)
39
- http-form_data (1.0.1)
40
- http_parser.rb (0.6.0)
41
- i18n (0.8.1)
42
- minitest (5.10.1)
43
- public_suffix (2.0.5)
44
- rake (0.9.6)
45
- rspec (3.5.0)
46
- rspec-core (~> 3.5.0)
47
- rspec-expectations (~> 3.5.0)
48
- rspec-mocks (~> 3.5.0)
49
- rspec-core (3.5.4)
50
- rspec-support (~> 3.5.0)
51
- rspec-expectations (3.5.0)
52
- diff-lcs (>= 1.2.0, < 2.0)
53
- rspec-support (~> 3.5.0)
54
- rspec-middlewares (0.0.1)
55
- rspec (~> 3.0)
56
- rspec-mocks (3.5.0)
57
- diff-lcs (>= 1.2.0, < 2.0)
58
- rspec-support (~> 3.5.0)
59
- rspec-support (3.5.0)
60
- rubygems-tasks (0.2.4)
61
- thread_safe (0.3.6)
62
- tzinfo (1.2.2)
63
- thread_safe (~> 0.1)
64
- unf (0.1.4)
65
- unf_ext
66
- unf_ext (0.0.7.2)
67
- vcr (3.0.3)
68
-
69
- PLATFORMS
70
- ruby
71
-
72
- DEPENDENCIES
73
- active_attr
74
- active_attr_extended
75
- bundler (~> 1.0)
76
- dotenv
77
- http
78
- ibm-watson-ruby!
79
- rake (~> 0.8)
80
- rspec
81
- rspec-middlewares
82
- rubygems-tasks (~> 0.2)
83
- vcr
84
-
85
- RUBY VERSION
86
- ruby 2.3.3p222
87
-
88
- BUNDLED WITH
89
- 1.14.4