15 lines
426 B
Ruby
15 lines
426 B
Ruby
# Load DSL and set up stages
|
|
require 'capistrano/setup'
|
|
|
|
# Include default deployment tasks
|
|
require 'capistrano/deploy'
|
|
|
|
# Include tasks from other gems included in your Gemfile
|
|
require 'capistrano/rbenv'
|
|
require 'capistrano/rails'
|
|
require 'whenever/capistrano'
|
|
require 'capistrano3/unicorn'
|
|
|
|
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
|
|
Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }
|