-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (24 loc) · 1.23 KB
/
Gemfile
File metadata and controls
29 lines (24 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
source 'https://rubygems.org'
group :development do
gem 'pry'
gem 'sshkit', '~> 1.13'
gem 'sshkit-sudo', '~> 0.1'
gem 'capistrano-ssh-doctor', '~> 1.0' # helps with debugging ssh-agent forwarding
gem 'capistrano', '~> 3.11'
gem 'capistrano-rails', '~> 1.4' # automatic migrations and asset compilation
gem 'capistrano-postgresql', '~> 6.2' # plug-n-play postgresql
gem 'capistrano-safe-deploy-to', '~> 1.1' # ensures deploy path for the app exists
gem "capistrano-db-tasks", '~> 0.6'
gem "capistrano-maintenance", '~> 1.2', require: false
gem 'rvm1-capistrano3', '~> 1.4', require: false
gem 'capistrano-faster-assets', '~> 1.1'
gem 'capistrano-rails-console', '~> 2.3'
# gem 'capistrano-rbenv', '~> 2.0' # idiomatic rbenv support
# gem 'capistrano-bundler', '~> 1.1' # support for bundler
# gem 'capistrano-rbenv-install', '~> 1.2' # ensures the right ruby version is installed
# gem "capistrano-rails-console"
# gem 'capistrano-unicorn-nginx', '~> 4.0' # plug-n-play nginx and unicorn
# gem 'capistrano3-unicorn'
# gem 'capistrano-sidekiq'
# gem 'slackistrano'
end