diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 21:39:57 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 21:39:57 -0400 |
commit | 79d9cd3c5e3764db9d3506e1702042a7a7a4aea3 (patch) | |
tree | 3a83e1e9f4b307199b95de86a28f58eb0f40ae04 /Capfile | |
parent | 9cf94eec5ae98f750f9babc0c37373df87e3981c (diff) | |
download | thoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.tar.gz thoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.tar.bz2 thoughts-79d9cd3c5e3764db9d3506e1702042a7a7a4aea3.zip |
Set up Capistrano
Diffstat (limited to 'Capfile')
-rw-r--r-- | Capfile | 19 |
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 | ||
2 | require "capistrano/setup" | ||
3 | |||
4 | # Include default deployment tasks | ||
5 | require "capistrano/deploy" | ||
6 | |||
7 | # Load the SCM plugin appropriate to your project: | ||
8 | require "capistrano/scm/git" | ||
9 | install_plugin Capistrano::SCM::Git | ||
10 | |||
11 | # Include tasks from other gems included in your Gemfile | ||
12 | require "capistrano/rvm" | ||
13 | require "capistrano/bundler" | ||
14 | require "capistrano/rails/assets" | ||
15 | require "capistrano/rails/migrations" | ||
16 | require "capistrano/passenger" | ||
17 | |||
18 | # Load custom tasks from `lib/capistrano/tasks` if you have any defined | ||
19 | Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r } | ||