mirror of
https://github.com/kdabir/has.git
synced 2024-11-11 14:40:48 +01:00
add specific ruby and thin in Gemfile. also add Procfile for Heroku.
This commit is contained in:
parent
2841d0f2f9
commit
b316fde795
3 changed files with 11 additions and 0 deletions
3
Gemfile
3
Gemfile
|
@ -1,5 +1,8 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
ruby '2.1.2'
|
||||||
|
|
||||||
gem 'rack'
|
gem 'rack'
|
||||||
|
gem 'thin'
|
||||||
gem 'guillotine'
|
gem 'guillotine'
|
||||||
gem 'mongo'
|
gem 'mongo'
|
||||||
gem 'bson_ext'
|
gem 'bson_ext'
|
||||||
|
|
|
@ -5,6 +5,8 @@ GEM
|
||||||
bson (1.12.0)
|
bson (1.12.0)
|
||||||
bson_ext (1.12.0)
|
bson_ext (1.12.0)
|
||||||
bson (~> 1.12.0)
|
bson (~> 1.12.0)
|
||||||
|
daemons (1.1.9)
|
||||||
|
eventmachine (1.0.3)
|
||||||
guillotine (1.4.2)
|
guillotine (1.4.2)
|
||||||
addressable (~> 2.3.0)
|
addressable (~> 2.3.0)
|
||||||
sinatra (~> 1.4.0)
|
sinatra (~> 1.4.0)
|
||||||
|
@ -17,6 +19,10 @@ GEM
|
||||||
rack (~> 1.4)
|
rack (~> 1.4)
|
||||||
rack-protection (~> 1.4)
|
rack-protection (~> 1.4)
|
||||||
tilt (~> 1.3, >= 1.3.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)
|
tilt (1.4.1)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
|
@ -27,3 +33,4 @@ DEPENDENCIES
|
||||||
guillotine
|
guillotine
|
||||||
mongo
|
mongo
|
||||||
rack
|
rack
|
||||||
|
thin
|
||||||
|
|
1
Procfile
Normal file
1
Procfile
Normal file
|
@ -0,0 +1 @@
|
||||||
|
web: bundle exec thin -p $PORT -e $RACK_ENV start
|
Loading…
Reference in a new issue