webdev.camp/Capfile

29 lines
820 B
Plaintext
Raw Normal View History

2016-04-15 09:43:10 +02:00
# Load DSL and set up stages
2016-03-21 17:45:31 +01:00
require 'capistrano/setup'
2016-04-15 09:43:10 +02:00
# Include default deployment tasks
2016-03-21 17:45:31 +01:00
require 'capistrano/deploy'
2016-04-15 09:43:10 +02:00
# Include tasks from other gems included in your Gemfile
2016-03-21 17:45:31 +01:00
#
# For documentation on these, see for example:
#
# https://github.com/capistrano/rvm
# https://github.com/capistrano/rbenv
# https://github.com/capistrano/chruby
# https://github.com/capistrano/bundler
2016-04-15 09:43:10 +02:00
# https://github.com/capistrano/rails
# https://github.com/capistrano/passenger
2016-03-21 17:45:31 +01:00
#
# require 'capistrano/rvm'
2016-04-15 09:43:10 +02:00
#require 'capistrano/rbenv'
2016-03-21 17:45:31 +01:00
# require 'capistrano/chruby'
2016-04-15 09:43:10 +02:00
require 'capistrano/rails'
require 'capistrano/passenger'
2016-03-21 17:45:31 +01:00
2016-04-15 09:43:10 +02:00
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
2017-05-21 18:16:59 +02:00
require "capistrano/scm/git"
install_plugin Capistrano::SCM::Git