panter/mykonote

View on GitHub
Capfile

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

# 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

# Include tasks from other gems included in your Gemfile
require 'capistrano/rails/migrations'
require 'capistrano/passenger'
require 'capistrano/rbenv'
require 'capistrano/bundler'

set :rbenv_type, :user

# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }