add sinatra

This commit is contained in:
Tommy Parnell
2016-12-01 20:51:09 -05:00
parent bdfb2b1cf1
commit 3340c53d42
3 changed files with 12 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
# frozen_string_literal: true
source "https://rubygems.org"
gem 'alexa_skills_ruby'
gem 'sinatra'
# gem "rails"

View File

@@ -13,7 +13,15 @@ GEM
i18n (0.7.0)
minitest (5.10.1)
multi_json (1.12.1)
rack (1.6.5)
rack-protection (1.5.3)
rack
sinatra (1.4.7)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
thread_safe (0.3.5)
tilt (2.0.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
@@ -22,6 +30,7 @@ PLATFORMS
DEPENDENCIES
alexa_skills_ruby
sinatra
BUNDLED WITH
1.13.6

2
config.ru Normal file
View File

@@ -0,0 +1,2 @@
require './app'
run Sinatra::Application