2a34255e0b
Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
13 lines
364 B
Ruby
13 lines
364 B
Ruby
# Load DSL and Setup Up Stages
|
|
require 'capistrano/setup'
|
|
require 'capistrano/deploy'
|
|
|
|
require 'capistrano/rails'
|
|
require 'capistrano/bundler'
|
|
require 'capistrano/rvm'
|
|
require 'capistrano/puma'
|
|
install_plugin Capistrano::Puma
|
|
|
|
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
|
|
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
|
|
|