Capfile
# Load DSL and set up stagesPrefer single-quoted strings when you don't need string interpolation or special symbols.require "capistrano/setup" # Include default deployment tasksPrefer single-quoted strings when you don't need string interpolation or special symbols.require "capistrano/deploy" # Include tasks from other gems included in your GemfilePrefer single-quoted strings when you don't need string interpolation or special symbols.require "capistrano/scm/git"install_plugin Capistrano::SCM::Git Prefer single-quoted strings when you don't need string interpolation or special symbols.require "airbrussh/capistrano"Prefer single-quoted strings when you don't need string interpolation or special symbols.require "capistrano/bundler"Prefer single-quoted strings when you don't need string interpolation or special symbols.require "capistrano/rails"Prefer single-quoted strings when you don't need string interpolation or special symbols.require "capistrano/mb"Prefer single-quoted strings when you don't need string interpolation or special symbols.require "capistrano/lets-encrypt"Prefer single-quoted strings when you don't need string interpolation or special symbols.require "capistrano-nc/nc"Prefer single-quoted strings when you don't need string interpolation or special symbols.require "whenever/capistrano" # Load custom tasks from `lib/capistrano/tasks` if you have any definedPrefer single-quoted strings when you don't need string interpolation or special symbols.Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }