summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorLogan Fick <logaldeveloper@protonmail.com>2018-05-19 12:15:20 -0400
committerLogan Fick <logaldeveloper@protonmail.com>2018-05-19 12:15:20 -0400
commit8e534e3330e1c4cd8a0c3d8d3ec732eec5fbd202 (patch)
treee1d399e7ab425223d92639e6341674cf053c0f8c /Gemfile
parent0d9663e70b4871a3cceee33a0a83bd06bca8dd44 (diff)
Switched to using Puma as the app server.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 09f297d..690d7fb 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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