alexa_couchpotato 1.0.7 → 1.0.8

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: 7ce704fe837acab8869d553420760dd4362d76ed
4
- data.tar.gz: 6153493ad1b38b1d751c07803575afe0e322c2da
3
+ metadata.gz: ec156337c1579d1ddb8440d29779f872daf885d9
4
+ data.tar.gz: 48ec8ce763c0f9ad52e44451bd5264565f37aef7
5
5
  SHA512:
6
- metadata.gz: cb7bce996fd9bf5ab2f7831083adba753ae05a32742d7bb282653bd69274064a89ebed43520e331e89326a3dbd94080a15909fa2a537082e56f68a4eef396713
7
- data.tar.gz: 887b8d7b6dbac5c1dab011f24973903aeb6b2b402b8ef2db4b6fed5d08e12bf4aa941cb9cb5d66885f77abab12b0ece471f61c49d67a10155611dc69f0a4aa79
6
+ metadata.gz: 4f6a8f1f843264f39f7151eeb8b718a3e9b306b531ca4598f8de351f36e9ccf4478b18bb74337fa55f9631c17843f12743a0377c6ab4d9f60ebe50de6f98699a
7
+ data.tar.gz: 88a14635501103217bbfe4cba56c4d6f83a5b38601bdcaf6f2891aa58b8a22dc532d250372d62640e7e76df32e7639eccd5106217cbad3eb8a1fc7d35270f47c
@@ -1,5 +1,5 @@
1
1
  module Sinatra
2
2
  module Couchpotato
3
- VERSION = "1.0.7"
3
+ VERSION = "1.0.8"
4
4
  end
5
5
  end
@@ -12,6 +12,15 @@ require 'sinatra/base'
12
12
  module Sinatra
13
13
  module Couchpotato
14
14
  def self.registered(app)
15
+ app.before do
16
+ if request.request_method == "POST"
17
+ @data = request.body.read
18
+ params.merge!(JSON.parse(@data))
19
+ @echo_request = AlexaObjects::EchoRequest.new(JSON.parse(@data))
20
+ @application_id = @echo_request.application_id
21
+ end
22
+ end
23
+
15
24
  app.post '/alexa_cp' do
16
25
  content_type :json
17
26
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alexa_couchpotato
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Lucas