Switched to using Puma as the app server.

This commit is contained in:
Logan Fick
2018-05-19 12:15:20 -04:00
parent 0d9663e70b
commit 8e534e3330
4 changed files with 20 additions and 15 deletions

11
Gemfile
View File

@@ -31,9 +31,10 @@ group :development do
gem 'binding_of_caller'
gem 'rails-erd'
# deploy with capistrano
gem 'capistrano-rails', '~> 1.1.2'
gem 'capistrano-rbenv', '~> 2.0'
gem 'capistrano-bundler', '~> 1.1.3'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano-bundler'
gem 'capistrano-puma'
# windows timezone foo
gem 'tzinfo-data', platforms: [:mingw, :mswin]
end
@@ -43,6 +44,6 @@ group :test do
end
group :production do
# Use unicorn as the app server
gem 'unicorn'
# Use puma as the app server
gem 'puma'
end