alexa_skills_ruby 0.0.6 → 0.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 +4 -4
- data/.travis.yml +7 -0
- data/README.md +2 -0
- data/alexa_skills_ruby.gemspec +1 -1
- data/gemfiles/as-4.2.gemfile +5 -0
- data/gemfiles/as-5.0.gemfile +5 -0
- data/lib/alexa_skills_ruby/version.rb +1 -1
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b4eda332ab8e4a78464b23a3dfc9307ac1cac0c
|
|
4
|
+
data.tar.gz: 7f48f5b4bbb293f6472f252a70250c13cb1075ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb5d5637a8c8c98678e30f8410482f4ca9d00c276ef1b8dabba34401dbca5286d907219f39b2cffeff8610584716080fdcb285f266adb3f203dac3b4336d0b16
|
|
7
|
+
data.tar.gz: fb16ac0c815dde299d5baa140ba1b9db8967ff8f6abd63efc1569c4aca0b350e3ea163c1d9d9cdb784397bbaf3520794c2b16a2e605bf33185f70a1a653bfe6c
|
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# alexa-skills-ruby
|
|
2
2
|
Simple library to interface with the Alexa Skills Kit
|
|
3
3
|
|
|
4
|
+
[](https://travis-ci.org/DanElbert/alexa_skills_ruby)
|
|
5
|
+
|
|
4
6
|
The primary way to interact with this library is by extending the `AlexaSkillsRuby::Handler` class. Create a subclass and
|
|
5
7
|
register event handlers.
|
|
6
8
|
|
data/alexa_skills_ruby.gemspec
CHANGED
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
17
17
|
spec.require_paths = ["lib"]
|
|
18
18
|
|
|
19
|
-
spec.add_runtime_dependency 'activesupport', '
|
|
19
|
+
spec.add_runtime_dependency 'activesupport', '>= 4.2'
|
|
20
20
|
spec.add_runtime_dependency "multi_json", "~> 1.0"
|
|
21
21
|
|
|
22
22
|
spec.add_development_dependency "bundler"
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alexa_skills_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Elbert
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-11-
|
|
11
|
+
date: 2016-11-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '4.2'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '4.2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -102,11 +102,14 @@ extensions: []
|
|
|
102
102
|
extra_rdoc_files: []
|
|
103
103
|
files:
|
|
104
104
|
- ".gitignore"
|
|
105
|
+
- ".travis.yml"
|
|
105
106
|
- Gemfile
|
|
106
107
|
- LICENSE
|
|
107
108
|
- README.md
|
|
108
109
|
- Rakefile
|
|
109
110
|
- alexa_skills_ruby.gemspec
|
|
111
|
+
- gemfiles/as-4.2.gemfile
|
|
112
|
+
- gemfiles/as-5.0.gemfile
|
|
110
113
|
- lib/alexa_skills_ruby.rb
|
|
111
114
|
- lib/alexa_skills_ruby/errors.rb
|
|
112
115
|
- lib/alexa_skills_ruby/handler.rb
|
|
@@ -156,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
156
159
|
version: '0'
|
|
157
160
|
requirements: []
|
|
158
161
|
rubyforge_project:
|
|
159
|
-
rubygems_version: 2.
|
|
162
|
+
rubygems_version: 2.4.6
|
|
160
163
|
signing_key:
|
|
161
164
|
specification_version: 4
|
|
162
165
|
summary: Simple library to interface with the Alexa Skills Kit
|