diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 15:22:55 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 15:22:55 -0500 |
commit | 52f60d1d022c82677274b2e984538d14a944bdd2 (patch) | |
tree | ed37c14353d8c83358fdc6e4aaa4a1870d1c56ab /Capfile | |
parent | f3465bb37892178398da7319c5ae287e9bf634de (diff) | |
download | wittle-52f60d1d022c82677274b2e984538d14a944bdd2.tar.gz wittle-52f60d1d022c82677274b2e984538d14a944bdd2.tar.bz2 wittle-52f60d1d022c82677274b2e984538d14a944bdd2.zip |
Capistrano for deployment
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 } | ||