12 lines
314 B
Text
12 lines
314 B
Text
|
# Load DSL and Setup Up Stages
|
||
|
require 'capistrano/setup'
|
||
|
|
||
|
# Includes default deployment tasks
|
||
|
require 'capistrano/deploy'
|
||
|
|
||
|
require 'capistrano/rails'
|
||
|
require 'capistrano/rbenv'
|
||
|
|
||
|
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
|
||
|
Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }
|