From 5c16658690afb3b153f2c56bcf8fcffc5ade83cd Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Fri, 20 Jun 2014 20:07:50 +0200 Subject: Capify with capistrano3. --- Capfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Capfile (limited to 'Capfile') diff --git a/Capfile b/Capfile new file mode 100644 index 0000000..080238a --- /dev/null +++ b/Capfile @@ -0,0 +1,25 @@ +# 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 +# +# 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 +# https://github.com/capistrano/rails +# +# require 'capistrano/rvm' +# require 'capistrano/rbenv' +# require 'capistrano/chruby' +# require 'capistrano/bundler' +# require 'capistrano/rails/assets' +# require 'capistrano/rails/migrations' + +# Loads custom tasks from `lib/capistrano/tasks' if you have any defined. +Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r } -- cgit v1.2.3