alexa_ruby 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0ecb9d2206ffa52620becb38d2979af5b2d382f
4
- data.tar.gz: 99f7d15b8f7b672d7e0e3007bcefeb5129a018de
3
+ metadata.gz: 67b2784c41d47dd3d678833e7b18def50b276b4c
4
+ data.tar.gz: 4dd4a19f746642a3bdd00502afe473238ee5b932
5
5
  SHA512:
6
- metadata.gz: ecdf130e009bb208852f1035451348a86d9b872da7536987a4bc3f82de36801e5438c1ed488c6af7b2b135595819cfe4ee593124cfa9268030cc0f1bd4bc8f3b
7
- data.tar.gz: 0e451beda04f13e9b50e816f0090da713fdeca3e1b6ef26580dc41904b0d3a018510ea45ba80ca57ec2633f716eb27305933a2955f607eefe80e3c46ab3f49f9
6
+ metadata.gz: 4e65c350323d75ab34f782155fa60a086926ce03320a006b6fccb3901f8bcee1d0f181599fe519b6fd15e63d95f00f5d0ba4df41ce6446702e106eaed48ec80c
7
+ data.tar.gz: fae408a2294d984319a0ed1b7823c5433e2c43f4228ba26ebd1bcfb134a29ae7b4ce133e3ccb19dcdd30902ab0497892c9bbab8b3539b04abb4a28a122c65a0e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- alexa_ruby (0.2.0)
4
+ alexa_ruby (1.0.0)
5
5
  bundler (>= 1.6.9)
6
6
  oj (~> 3.0)
7
7
  rake
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2017 Mike Mulev
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -3,7 +3,6 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/alexa_ruby.svg)](https://badge.fury.io/rb/alexa_ruby)
4
4
  [![Build Status](https://travis-ci.org/mulev/alexa-ruby.svg?branch=master)](https://travis-ci.org/mulev/alexa-ruby)
5
5
  [![Code Climate](https://codeclimate.com/github/mulev/alexa-ruby/badges/gpa.svg)](https://codeclimate.com/github/mulev/alexa-ruby)
6
- [![Test Coverage](https://codeclimate.com/github/mulev/alexa-ruby/badges/coverage.svg)](https://codeclimate.com/github/mulev/alexa-ruby/coverage)
7
6
 
8
7
  Originally forked from [damianFC's AlexaRubykit](https://github.com/damianFC/alexa-rubykit), this gem implements a convenient back-end service for interaction with Amazon Alexa API.
9
8
 
@@ -68,8 +67,25 @@ Gem can be used with any framework - Rails, Sinatra, Cuba, Roda, or any other th
68
67
 
69
68
  ## Testing
70
69
 
71
- Run all tests with
70
+ Run all tests with:
72
71
 
73
72
  ```bash
74
73
  $ rake test
75
74
  ```
75
+
76
+ Please, feel free to [open an issue](https://github.com/mulev/alexa-ruby/issues/new) in case of any bugs.
77
+
78
+ ## Contributing
79
+
80
+ You are always welcome to open an issue with some feature request or bug report. Also you can add new features by yourself. To do so, please, follow that steps:
81
+
82
+ 1. Fork master branch of this repo
83
+ 2. Add a new feature branch in your forked repo and write code
84
+ 3. Write tests
85
+ 4. Add pull request from your branch to [alexa_ruby develop branch](https://github.com/mulev/alexa-ruby/tree/develop)
86
+
87
+ All development is made only in develop branch before being merged to master.
88
+
89
+ ## License
90
+
91
+ AlexaRuby is released under [MIT license](https://github.com/mulev/alexa-ruby/blob/master/LICENSE).
@@ -21,7 +21,7 @@ module AlexaRuby
21
21
  #
22
22
  # @return [Boolean]
23
23
  def invalid_request?
24
- @req[:version].nil? || @req[:context].nil? || @req[:request].nil?
24
+ @req[:version].nil? || @req[:request].nil?
25
25
  end
26
26
 
27
27
  # Request structure isn't valid, raise exception
@@ -1,3 +1,3 @@
1
1
  module AlexaRuby
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alexa_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Mulev
@@ -129,7 +129,7 @@ extra_rdoc_files: []
129
129
  files:
130
130
  - Gemfile
131
131
  - Gemfile.lock
132
- - LICENSE.txt
132
+ - LICENSE
133
133
  - README.md
134
134
  - Rakefile
135
135
  - lib/alexa_ruby.rb
@@ -171,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
171
171
  version: '0'
172
172
  requirements: []
173
173
  rubyforge_project:
174
- rubygems_version: 2.6.12
174
+ rubygems_version: 2.2.2
175
175
  signing_key:
176
176
  specification_version: 4
177
177
  summary: Ruby toolkit for Amazon Alexa API
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2015 Damian Finol
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.