about summary refs log tree commit diff stats
path: root/Capfile
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-07-02 21:39:57 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-07-02 21:39:57 -0400
commit79d9cd3c5e3764db9d3506e1702042a7a7a4aea3 (patch)
tree3a83e1e9f4b307199b95de86a28f58eb0f40ae04 /Capfile
parent9cf94eec5ae98f750f9babc0c37373df87e3981c (diff)
downloadthoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.tar.gz
thoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.tar.bz2
thoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.zip
Set up Capistrano
Diffstat (limited to 'Capfile')
-rw-r--r--Capfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Capfile b/Capfile new file mode 100644 index 0000000..1ace4ce --- /dev/null +++ b/Capfile
@@ -0,0 +1,19 @@
1# Load DSL and set up stages
2require "capistrano/setup"
3
4# Include default deployment tasks
5require "capistrano/deploy"
6
7# Load the SCM plugin appropriate to your project:
8require "capistrano/scm/git"
9install_plugin Capistrano::SCM::Git
10
11# Include tasks from other gems included in your Gemfile
12require "capistrano/rvm"
13require "capistrano/bundler"
14require "capistrano/rails/assets"
15require "capistrano/rails/migrations"
16require "capistrano/passenger"
17
18# Load custom tasks from `lib/capistrano/tasks` if you have any defined
19Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }