Use thin in production

This commit is contained in:
Erik Michaels-Ober 2011-08-27 12:14:10 -07:00
parent c7d57a12f6
commit 80ad8f58b7
3 changed files with 9 additions and 0 deletions

View File

@ -27,6 +27,7 @@ end
group :production do group :production do
gem 'therubyracer', :platforms => :ruby gem 'therubyracer', :platforms => :ruby
gem 'thin'
end end
group :test do group :test do

View File

@ -46,11 +46,13 @@ GEM
bouncy-castle-java (1.5.0146.1) bouncy-castle-java (1.5.0146.1)
builder (3.0.0) builder (3.0.0)
crack (0.1.8) crack (0.1.8)
daemons (1.1.4)
devise (1.4.2) devise (1.4.2)
bcrypt-ruby (~> 2.1.2) bcrypt-ruby (~> 2.1.2)
orm_adapter (~> 0.0.3) orm_adapter (~> 0.0.3)
warden (~> 1.0.3) warden (~> 1.0.3)
erubis (2.7.0) erubis (2.7.0)
eventmachine (0.12.10)
execjs (1.2.4) execjs (1.2.4)
multi_json (~> 1.0) multi_json (~> 1.0)
fastercsv (1.5.4) fastercsv (1.5.4)
@ -107,6 +109,10 @@ GEM
therubyracer (0.9.4) therubyracer (0.9.4)
libv8 (~> 3.3.10) libv8 (~> 3.3.10)
therubyrhino (1.72.8) therubyrhino (1.72.8)
thin (1.2.11)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
thor (0.14.6) thor (0.14.6)
tilt (1.3.3) tilt (1.3.3)
treetop (1.4.10) treetop (1.4.10)
@ -140,5 +146,6 @@ DEPENDENCIES
sqlite3 sqlite3
therubyracer therubyracer
therubyrhino therubyrhino
thin
uglifier uglifier
webmock webmock

1
Procfile Normal file
View File

@ -0,0 +1 @@
web: bundle exec rails server thin -p $PORT