Commit e98d4780850e8649718f10c2a4d5b3dc7f04b390

Authored by Dmitriy Zaporozhets
1 parent b6da7348

remove thin from production env. Use unicorn for foreman

Showing 3 changed files with 1 additions and 8 deletions   Show diff stats
Gemfile
... ... @@ -71,7 +71,6 @@ gem "redcarpet", "~> 2.2.2"
71 71 gem "github-markup", "~> 0.7.4", require: 'github/markup'
72 72  
73 73 # Servers
74   -gem "thin", '~> 1.5.0'
75 74 gem "unicorn", "~> 4.4.0"
76 75  
77 76 # Issue tags
... ...
Gemfile.lock
... ... @@ -144,7 +144,6 @@ GEM
144 144 colorize (0.5.8)
145 145 connection_pool (1.0.0)
146 146 crack (0.3.1)
147   - daemons (1.1.9)
148 147 devise (2.1.2)
149 148 bcrypt-ruby (~> 3.0)
150 149 orm_adapter (~> 0.1)
... ... @@ -437,10 +436,6 @@ GEM
437 436 test_after_commit (0.0.1)
438 437 therubyracer (0.10.2)
439 438 libv8 (~> 3.3.10)
440   - thin (1.5.0)
441   - daemons (>= 1.0.9)
442   - eventmachine (>= 0.12.6)
443   - rack (>= 1.0.0)
444 439 thor (0.16.0)
445 440 tilt (1.3.3)
446 441 timers (1.0.2)
... ... @@ -547,7 +542,6 @@ DEPENDENCIES
547 542 stamp
548 543 test_after_commit
549 544 therubyracer
550   - thin (~> 1.5.0)
551 545 uglifier (~> 1.3.0)
552 546 unicorn (~> 4.4.0)
553 547 webmock
... ...
Procfile
1   -web: bundle exec rails s -p $PORT
  1 +web: bundle exec unicorn_rails -p $PORT
2 2 worker: bundle exec sidekiq -q post_receive,mailer,system_hook,common,default
... ...