aboutsummaryrefslogtreecommitdiffstats
path: root/Capfile
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2014-06-20 20:07:50 +0200
committerHarald Eilertsen <haraldei@anduin.net>2014-06-20 20:07:50 +0200
commit5c16658690afb3b153f2c56bcf8fcffc5ade83cd (patch)
treee7b914a7dbb0e7280bf086703077365a59021329 /Capfile
parent15ea1510b2b67bd1e249de3b7b9ea99b5e7b468f (diff)
downloadhmnoweb-5c16658690afb3b153f2c56bcf8fcffc5ade83cd.tar.gz
hmnoweb-5c16658690afb3b153f2c56bcf8fcffc5ade83cd.tar.bz2
hmnoweb-5c16658690afb3b153f2c56bcf8fcffc5ade83cd.zip
Capify with capistrano3.
Diffstat (limited to 'Capfile')
-rw-r--r--Capfile25
1 files changed, 25 insertions, 0 deletions
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 }