2
1
mirror of https://github.com/kdabir/has.git synced 2024-11-10 21:26:50 +01:00

add specific ruby and thin in Gemfile. also add Procfile for Heroku.

This commit is contained in:
Kunal Dabir 2015-02-12 22:24:34 +05:30
parent 2841d0f2f9
commit b316fde795
3 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,8 @@
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rack'
gem 'thin'
gem 'guillotine'
gem 'mongo'
gem 'bson_ext'

View File

@ -5,6 +5,8 @@ GEM
bson (1.12.0)
bson_ext (1.12.0)
bson (~> 1.12.0)
daemons (1.1.9)
eventmachine (1.0.3)
guillotine (1.4.2)
addressable (~> 2.3.0)
sinatra (~> 1.4.0)
@ -17,6 +19,10 @@ GEM
rack (~> 1.4)
rack-protection (~> 1.4)
tilt (~> 1.3, >= 1.3.4)
thin (1.6.2)
daemons (>= 1.0.9)
eventmachine (>= 1.0.0)
rack (>= 1.0.0)
tilt (1.4.1)
PLATFORMS
@ -27,3 +33,4 @@ DEPENDENCIES
guillotine
mongo
rack
thin

1
Procfile Normal file
View File

@ -0,0 +1 @@
web: bundle exec thin -p $PORT -e $RACK_ENV start