From 79d9cd3c5e3764db9d3506e1702042a7a7a4aea3 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 2 Jul 2017 21:39:57 -0400 Subject: Set up Capistrano --- Capfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Capfile (limited to 'Capfile') diff --git a/Capfile b/Capfile new file mode 100644 index 0000000..1ace4ce --- /dev/null +++ b/Capfile @@ -0,0 +1,19 @@ +# 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/rvm" +require "capistrano/bundler" +require "capistrano/rails/assets" +require "capistrano/rails/migrations" +require "capistrano/passenger" + +# Load custom tasks from `lib/capistrano/tasks` if you have any defined +Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r } -- cgit 1.4.1