Class: Capistrano::Deploy::Strategy::Rsync

Inherits:
NoScm
  • Object
show all
Defined in:
lib/capistrano/recipes/deploy/strategy/rsync.rb

Overview

Please note: this strategy ignores the :repository parameter. It will bundle up your local checkout _at the commit hash_ that is checked out and send it to the servers.

Instance Method Summary collapse

Instance Method Details

#deploy!Object



12
13
14
15
16
17
# File 'lib/capistrano/recipes/deploy/strategy/rsync.rb', line 12

def deploy!
  prepare!
  distribute!
ensure
  cleanup!
end