alexa_ruby 1.4.3 → 1.4.5
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/CHANGELOG +5 -0
- data/Gemfile.lock +8 -8
- data/lib/alexa_ruby/alexa.rb +3 -2
- data/lib/alexa_ruby/request/base_request/validator/certificates.rb +2 -1
- data/lib/alexa_ruby/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e910b59171297185881ecfd2c51d20eec7981ae1
|
|
4
|
+
data.tar.gz: b71fd281429e1750054381b3589ce15763a24e38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5082094dd5d518d938793a6794f219dae2d9f02e5c25b894ef914cf2a067aff29aecacf41058a35a6b634bd6768d38b95b1225e46afaa445c7d04256df88e472
|
|
7
|
+
data.tar.gz: f638fc0cb3cbf30614c6d63a7318b5115afca1d066d6aadcbb9d56c1d5a6e50bdd3632cbcd42da6070913916be2bfd47023cd5c0f097cd9a1c82d18aa804104e
|
data/CHANGELOG
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
alexa_ruby (1.
|
|
4
|
+
alexa_ruby (1.4.5)
|
|
5
5
|
addressable (>= 2.5.1)
|
|
6
6
|
bundler (>= 1.6.9)
|
|
7
7
|
httparty (>= 0.15.5)
|
|
@@ -11,8 +11,8 @@ PATH
|
|
|
11
11
|
GEM
|
|
12
12
|
remote: https://rubygems.org/
|
|
13
13
|
specs:
|
|
14
|
-
addressable (2.5.
|
|
15
|
-
public_suffix (
|
|
14
|
+
addressable (2.5.2)
|
|
15
|
+
public_suffix (>= 2.0.2, < 4.0)
|
|
16
16
|
ansi (1.5.0)
|
|
17
17
|
builder (3.2.3)
|
|
18
18
|
coveralls (0.8.21)
|
|
@@ -22,7 +22,7 @@ GEM
|
|
|
22
22
|
thor (~> 0.19.4)
|
|
23
23
|
tins (~> 1.6)
|
|
24
24
|
docile (1.1.5)
|
|
25
|
-
httparty (0.15.
|
|
25
|
+
httparty (0.15.6)
|
|
26
26
|
multi_xml (>= 0.5.2)
|
|
27
27
|
json (2.1.0)
|
|
28
28
|
minitest (5.10.2)
|
|
@@ -32,9 +32,9 @@ GEM
|
|
|
32
32
|
minitest (>= 5.0)
|
|
33
33
|
ruby-progressbar
|
|
34
34
|
multi_xml (0.6.0)
|
|
35
|
-
oj (3.
|
|
36
|
-
public_suffix (
|
|
37
|
-
rake (12.
|
|
35
|
+
oj (3.3.6)
|
|
36
|
+
public_suffix (3.0.0)
|
|
37
|
+
rake (12.1.0)
|
|
38
38
|
ruby-progressbar (1.8.1)
|
|
39
39
|
simplecov (0.14.1)
|
|
40
40
|
docile (~> 1.1.0)
|
|
@@ -56,4 +56,4 @@ DEPENDENCIES
|
|
|
56
56
|
minitest-reporters (~> 1.1, >= 1.1.14)
|
|
57
57
|
|
|
58
58
|
BUNDLED WITH
|
|
59
|
-
1.15.
|
|
59
|
+
1.15.4
|
data/lib/alexa_ruby/alexa.rb
CHANGED
|
@@ -55,7 +55,7 @@ module AlexaRuby
|
|
|
55
55
|
IntentRequest.new(@req)
|
|
56
56
|
when /SessionEnded/
|
|
57
57
|
SessionEndedRequest.new(@req)
|
|
58
|
-
when /AudioPlayer/, /
|
|
58
|
+
when /AudioPlayer/, /Playback/, /System/
|
|
59
59
|
AudioPlayerRequest.new(@req)
|
|
60
60
|
end
|
|
61
61
|
end
|
|
@@ -67,7 +67,8 @@ module AlexaRuby
|
|
|
67
67
|
def ssl_check?
|
|
68
68
|
@request.certificates_chain_url = @opts[:certificates_chain_url]
|
|
69
69
|
@request.signature = @opts[:request_signature]
|
|
70
|
-
@request.certificates_chain_url && @request.signature
|
|
70
|
+
@request.certificates_chain_url && @request.signature &&
|
|
71
|
+
@request.type != :audio_player
|
|
71
72
|
end
|
|
72
73
|
end
|
|
73
74
|
end
|
data/lib/alexa_ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alexa_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Mulev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
173
173
|
version: '0'
|
|
174
174
|
requirements: []
|
|
175
175
|
rubyforge_project:
|
|
176
|
-
rubygems_version: 2.6.
|
|
176
|
+
rubygems_version: 2.6.13
|
|
177
177
|
signing_key:
|
|
178
178
|
specification_version: 4
|
|
179
179
|
summary: Ruby toolkit for Amazon Alexa API
|