summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorLogan Fick <logaldeveloper@protonmail.com>2018-05-27 18:09:46 -0400
committerLogan Fick <logaldeveloper@protonmail.com>2018-05-27 18:09:46 -0400
commit3d8199c9f9186cec4b331edc50d99e5f1d5d11f2 (patch)
tree1d6d5f6283fd15a84c17e538bb105ad958a1bbcc /Gemfile
parent8f16fd709da25abda116e09015409d642932b85e (diff)
Reverted messy attempt at switch to Puma as app server.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile11
1 files changed, 5 insertions, 6 deletions
diff --git a/Gemfile b/Gemfile
index 690d7fb..09f297d 100644
--- a/Gemfile
+++ b/Gemfile
@@ -31,10 +31,9 @@ group :development do
gem 'binding_of_caller'
gem 'rails-erd'
# deploy with capistrano
- gem 'capistrano-rails'
- gem 'capistrano-rbenv'
- gem 'capistrano-bundler'
- gem 'capistrano-puma'
+ gem 'capistrano-rails', '~> 1.1.2'
+ gem 'capistrano-rbenv', '~> 2.0'
+ gem 'capistrano-bundler', '~> 1.1.3'
# windows timezone foo
gem 'tzinfo-data', platforms: [:mingw, :mswin]
end
@@ -44,6 +43,6 @@ group :test do
end
group :production do
- # Use puma as the app server
- gem 'puma'
+ # Use unicorn as the app server
+ gem 'unicorn'
end