summaryrefslogtreecommitdiff
path: root/config/deploy.rb
blob: 28d94576245fbe141c83fe232aaf49339c0e7212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# config valid only for current version of Capistrano
lock '3.4.0'

set :repo_url, 'git@bitbucket.org:redstonesheep/redstoner.git'

set :scm, :git

set :ssh_options, { forward_agent: true }

set :keep_releases, 5

set :deploy_to, -> { "/home/www-data/apps/#{fetch(:application)}" }

set :rbenv_ruby, '2.0.0-p247'

set :bundle_without, %w{development test}.join(' ')

# Default value for linked_dirs is []
set :linked_dirs, fetch(:linked_dirs, []).push('bin', 'log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')

namespace :deploy do
  desc "Make sure local git is in sync with remote."
  task :check_revision, roles: :web do
    unless `git rev-parse HEAD` == `git rev-parse origin/master`
      puts "WARNING: HEAD is not the same as origin/master"
      puts "Run `git push` to sync changes."
      exit
    end
  end
  before "deploy", "deploy:check_revision"

  after :publishing, :restart
end