forked from copycopter/copycopter-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapfile
More file actions
19 lines (17 loc) · 634 Bytes
/
Copy pathCapfile
File metadata and controls
19 lines (17 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# load "deploy"
# # Uncomment if you are using Rails' asset pipeline
# load "deploy/assets"
# Dir[
# "vendor/gems/*/recipes/*.rb",
# "vendor/plugins/*/recipes/*.rb"
# ].each { |plugin| load(plugin) }
# load "config/deploy" # remove this line to skip loading any of the default tasks
require "capistrano/setup"
require "capistrano/deploy"
require "capistrano/rvm"
require "capistrano/bundler"
require "capistrano/rails/assets"
require "capistrano/rails/migrations"
require "capistrano3/unicorn"
# Load custom tasks from `lib/capistrano/tasks' if you have any defined
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }