clova-speech 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/clova-speech.rb +10 -0
- data/lib/{clova → clova-speech}/client.rb +0 -0
- data/lib/{clova → clova-speech}/config.rb +0 -0
- data/lib/{clova → clova-speech}/output_speech.rb +0 -0
- data/lib/{clova → clova-speech}/request.rb +0 -0
- data/lib/{clova → clova-speech}/request/event_request.rb +0 -0
- data/lib/{clova → clova-speech}/request/intent_request.rb +0 -0
- data/lib/{clova → clova-speech}/request/launch_request.rb +0 -0
- data/lib/{clova → clova-speech}/request/request.rb +0 -0
- data/lib/{clova → clova-speech}/request/session_ended_request.rb +0 -0
- data/lib/{clova → clova-speech}/response.rb +0 -0
- data/lib/{clova → clova-speech}/session.rb +0 -0
- data/lib/{clova → clova-speech}/skill.rb +0 -0
- data/lib/{clova → clova-speech}/validator.rb +0 -0
- data/lib/{clova → clova-speech}/version.rb +0 -0
- metadata +17 -17
- data/lib/clova.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f58ba95a9c184738e281608c274d526ae5f93ee56663ef6d4f3dab5819ae95f
|
4
|
+
data.tar.gz: 94144bdcb7d9bfc4217f3598595fbce5ef113f1b66135830e3c182a3da97edd4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58bcf4c24f3bf1daf1e1e0ec60f119a25c6315fa8a004fac56c06561203c63b593410ac51df2b6f7ad7b8142804266ca384cd9df4ed5ad52d96d3be54ce51839
|
7
|
+
data.tar.gz: a7416ddec26d214da45958bf8c482d9d7acca7360e334554f33ecc0b4d246854edb9f7f5df019a5d2ca8e704d830a161cec407db029645b050086cb1f342d603
|
data/lib/clova-speech.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'clova-speech/version'
|
2
|
+
require 'clova-speech/config'
|
3
|
+
require 'clova-speech/request'
|
4
|
+
require 'clova-speech/response'
|
5
|
+
require 'clova-speech/output_speech'
|
6
|
+
require 'clova-speech/validator'
|
7
|
+
require 'clova-speech/session'
|
8
|
+
require 'clova-speech/client'
|
9
|
+
require 'clova-speech/skill'
|
10
|
+
require 'json'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clova-speech
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Isaiah Bush
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.0'
|
69
69
|
description: Clova API - SDK of the LINE Clova Smart Speaker API for Ruby. Developed
|
70
|
-
as part of an internship at LINE Corp
|
70
|
+
as part of an internship at LINE Corp.
|
71
71
|
email:
|
72
72
|
- itbush@cs.stanford.com, itbush1998@gmail.com
|
73
73
|
executables: []
|
@@ -75,21 +75,21 @@ extensions: []
|
|
75
75
|
extra_rdoc_files: []
|
76
76
|
files:
|
77
77
|
- README.md
|
78
|
-
- lib/clova.rb
|
79
|
-
- lib/clova/client.rb
|
80
|
-
- lib/clova/config.rb
|
81
|
-
- lib/clova/output_speech.rb
|
82
|
-
- lib/clova/request.rb
|
83
|
-
- lib/clova/request/event_request.rb
|
84
|
-
- lib/clova/request/intent_request.rb
|
85
|
-
- lib/clova/request/launch_request.rb
|
86
|
-
- lib/clova/request/request.rb
|
87
|
-
- lib/clova/request/session_ended_request.rb
|
88
|
-
- lib/clova/response.rb
|
89
|
-
- lib/clova/session.rb
|
90
|
-
- lib/clova/skill.rb
|
91
|
-
- lib/clova/validator.rb
|
92
|
-
- lib/clova/version.rb
|
78
|
+
- lib/clova-speech.rb
|
79
|
+
- lib/clova-speech/client.rb
|
80
|
+
- lib/clova-speech/config.rb
|
81
|
+
- lib/clova-speech/output_speech.rb
|
82
|
+
- lib/clova-speech/request.rb
|
83
|
+
- lib/clova-speech/request/event_request.rb
|
84
|
+
- lib/clova-speech/request/intent_request.rb
|
85
|
+
- lib/clova-speech/request/launch_request.rb
|
86
|
+
- lib/clova-speech/request/request.rb
|
87
|
+
- lib/clova-speech/request/session_ended_request.rb
|
88
|
+
- lib/clova-speech/response.rb
|
89
|
+
- lib/clova-speech/session.rb
|
90
|
+
- lib/clova-speech/skill.rb
|
91
|
+
- lib/clova-speech/validator.rb
|
92
|
+
- lib/clova-speech/version.rb
|
93
93
|
homepage: https://github.com/itbush/clova-speech
|
94
94
|
licenses: []
|
95
95
|
metadata: {}
|
data/lib/clova.rb
DELETED