mirror of
https://github.com/zhigang1992/tsemple.git
synced 2026-01-12 17:52:57 +08:00
12 lines
361 B
Ruby
12 lines
361 B
Ruby
# Load DSL and Setup Up Stages
|
|
require 'capistrano/setup'
|
|
|
|
# Includes default deployment tasks
|
|
require 'capistrano/deploy'
|
|
require 'capistrano/bundler'
|
|
require 'capistrano/rails/assets'
|
|
require 'capistrano/rails/migrations'
|
|
|
|
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
|
|
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
|