mena-devs/tilde

View on GitHub
Capfile

Summary

Maintainability
Test Coverage
# Load DSL and set up stages
Prefer single-quoted strings when you don't need string interpolation or special symbols.
require "capistrano/setup"
 
# Include default deployment tasks
Prefer single-quoted strings when you don't need string interpolation or special symbols.
require "capistrano/deploy"
 
# Include tasks from other gems included in your Gemfile
Prefer 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 defined
Prefer single-quoted strings when you don't need string interpolation or special symbols.
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }