Install thin gem always to have an production server for the Docker setup

This commit is contained in:
Patrick Gansterer 2017-08-08 23:45:29 +02:00
parent 251681bb66
commit 2b1056687a
1 changed files with 1 additions and 2 deletions

View File

@ -36,6 +36,7 @@ gem 'ransack'
gem 'acts_as_tree' gem 'acts_as_tree'
gem 'rails-settings-cached', '= 0.4.3' # caching breaks tests until Rails 5 https://github.com/huacnlee/rails-settings-cached/issues/73 gem 'rails-settings-cached', '= 0.4.3' # caching breaks tests until Rails 5 https://github.com/huacnlee/rails-settings-cached/issues/73
gem 'resque' gem 'resque'
gem 'thin'
gem 'whenever', require: false # For defining cronjobs, see config/schedule.rb gem 'whenever', require: false # For defining cronjobs, see config/schedule.rb
gem 'protected_attributes', '= 1.1.0' # 1.1.0 until tests work work with higher versions gem 'protected_attributes', '= 1.1.0' # 1.1.0 until tests work work with higher versions
gem 'ruby-units' gem 'ruby-units'
@ -90,8 +91,6 @@ group :development do
gem 'capistrano-rvm', require: false gem 'capistrano-rvm', require: false
gem 'capistrano-bundler', '>= 1.1.0', require: false gem 'capistrano-bundler', '>= 1.1.0', require: false
gem 'capistrano-rails', require: false gem 'capistrano-rails', require: false
# Avoid having content-length warnings
gem 'thin'
end end
group :development, :test do group :development, :test do