set :application, 'myapp'
set :repository, "git@myapp.unfuddle.com:myapp/jes2git.git"
set :user, "jes"

# ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }
set :branch, "master"
set :deploy_to, '/home/jes/jes2'

set :format, :pretty
set :log_level, :debug
#set :pty, true
set :ssh_options, { :forward_agent => true}

#set :linked_files, %w{config/database.yml}
set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}


# set :default_env, { path: "/opt/ruby/bin:$PATH" }

namespace :deploy do

  desc 'Restart application'
  task :restart do
    on roles(:app), in: :sequence, wait: 5 do
      # Your restart mechanism here, for example:
      # execute :touch, release_path.join('tmp/restart.txt')
    end
  end

  after :restart, :clear_cache do
    on roles(:web), in: :groups, limit: 3, wait: 10 do
      # Here we can do anything such as:
      # within release_path do
      #   execute :rake, 'cache:clear'
      # end
    end
  end

  after :finishing, 'deploy:cleanup'

end
