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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6df6b0746a4998158185fa5e834c9fe60dbc755c
4
- data.tar.gz: 91dc818107fb6897f1363475f66b08955c510288
3
+ metadata.gz: 1b4eda332ab8e4a78464b23a3dfc9307ac1cac0c
4
+ data.tar.gz: 7f48f5b4bbb293f6472f252a70250c13cb1075ad
5
5
  SHA512:
6
- metadata.gz: d037f2108e8f47c2aa38811db16787fd0bef1226b687a6671ef452ff933d026b5710e9862e188bcf7b1418de9b1d92f317cade2cc1069499e92663f84eea07fe
7
- data.tar.gz: b18af320c86824dfafc0f09b8a0b3bca79b024bbd41199dae251f0b617ddd4f37f7a73a7ac8636fe55eafe69dda6cee6a45ccf777159e4e288952f21ac84050d
6
+ metadata.gz: cb5d5637a8c8c98678e30f8410482f4ca9d00c276ef1b8dabba34401dbca5286d907219f39b2cffeff8610584716080fdcb285f266adb3f203dac3b4336d0b16
7
+ data.tar.gz: fb16ac0c815dde299d5baa140ba1b9db8967ff8f6abd63efc1569c4aca0b350e3ea163c1d9d9cdb784397bbaf3520794c2b16a2e605bf33185f70a1a653bfe6c
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - '2.3.1'
4
+
5
+ gemfile:
6
+ - gemfiles/as-4.2.gemfile
7
+ - gemfiles/as-5.0.gemfile
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
+ [![Build Status](https://travis-ci.org/DanElbert/alexa_skills_ruby.svg?branch=master)](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
 
@@ -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', '~> 4.2'
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"
@@ -0,0 +1,5 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'activesupport', '~> 4.2.7'
4
+
5
+ gemspec :path => '../'
@@ -0,0 +1,5 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'activesupport', '~> 5.0.0'
4
+
5
+ gemspec :path => '../'
@@ -1,3 +1,3 @@
1
1
  module AlexaSkillsRuby
2
- VERSION = '0.0.6'
2
+ VERSION = '0.0.7'
3
3
  end
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.6
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-04 00:00:00.000000000 Z
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.5.1
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