18 lines
505 B
Ruby
18 lines
505 B
Ruby
# Load DSL and set up stages
|
|
require "capistrano/setup"
|
|
|
|
# Include default deployment tasks
|
|
require "capistrano/deploy"
|
|
|
|
# Load the SCM plugin appropriate to your project:
|
|
require "capistrano/scm/git"
|
|
install_plugin Capistrano::SCM::Git
|
|
|
|
require "capistrano/rbenv"
|
|
require "capistrano/rails/assets"
|
|
require "capistrano/rails/migrations"
|
|
# require "capistrano/passenger"
|
|
|
|
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
|
|
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }
|