mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 07:11:41 +00:00
18 lines
529 B
Ruby
18 lines
529 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Load DSL and Setup Up Stages
|
|
require 'capistrano/setup'
|
|
|
|
# Includes default deployment tasks
|
|
require 'capistrano/deploy'
|
|
|
|
# Includes tasks from other gems included in your Gemfile
|
|
require 'capistrano/passenger'
|
|
require 'capistrano/bundler'
|
|
require 'capistrano/rbenv'
|
|
require 'capistrano/rails'
|
|
require 'capistrano/scm/git'
|
|
install_plugin Capistrano::SCM::Git
|
|
|
|
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
|
|
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
|