Skip to content

Commit 6ea5f18

Browse files
committedMay 22, 2013
Act as Herokai
1 parent 2d6825c commit 6ea5f18

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed
 

‎Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
source 'https://rubygems.org'
22

3+
gem 'thin'
34
gem 'sinatra'
45
gem 'haml'
56
gem 'sass'

‎Gemfile.lock

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4+
daemons (1.1.9)
5+
eventmachine (1.0.3)
46
haml (4.0.2)
57
tilt
68
rack (1.5.2)
@@ -11,6 +13,10 @@ GEM
1113
rack (~> 1.5, >= 1.5.2)
1214
rack-protection (~> 1.4)
1315
tilt (~> 1.3, >= 1.3.4)
16+
thin (1.5.1)
17+
daemons (>= 1.0.9)
18+
eventmachine (>= 0.12.6)
19+
rack (>= 1.0.0)
1420
tilt (1.4.1)
1521

1622
PLATFORMS
@@ -20,3 +26,4 @@ DEPENDENCIES
2026
haml
2127
sass
2228
sinatra
29+
thin

‎Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: bundle exec thin start -p $PORT -e RACK_ENV

0 commit comments

Comments
 (0)
Please sign in to comment.