Files

Class/Module Index [+]

Quicksearch

Capistrano::Deploy::Strategy::Copy

This class implements the strategy for deployments which work by preparing the source code locally, compressing it, copying the file to each target host, and uncompressing it to the deployment directory.

By default, the SCM checkout command is used to obtain the local copy of the source code. If you would rather use the export operation, you can set the :copy_strategy variable to :export.

set :copy_strategy, :export

For even faster deployments, you can set the :copy_cache variable to true. This will cause deployments to do a new checkout of your repository to a new directory, and then copy that checkout. Subsequent deploys will just resync that copy, rather than doing an entirely new checkout. Additionally, you can specify file patterns to exclude from the copy when using :copy_cache; just set the :copy_exclude variable to a file glob (or an array of globs).

set :copy_cache, true
set :copy_exclude, ".git/*"

Note that :copy_strategy is ignored when :copy_cache is set. Also, if you want the copy cache put somewhere specific, you can set the variable to the path you want, instead of merely 'true':

set :copy_cache, "/tmp/caches/myapp"

This deployment strategy also supports a special variable, :copy_compression, which must be one of :gzip, :bz2, or :zip, and which specifies how the source should be compressed for transmission to each host.

There is a possibility to pass a build command that will get executed if your code needs to be compiled or something needs to be done before the code is ready to run.

set :build_script, "make all"

Note that if you use :copy_cache, the :build_script is used on the cache and thus you get faster compilation if your script does not recompile everything.

Constants

Compression

A struct for representing the specifics of a compression type. Commands are arrays, where the first element is the utility to be used to perform the compression or decompression.

Public Instance Methods

build(directory) click to toggle source
# File lib/capistrano/recipes/deploy/strategy/copy.rb, line 66
def build directory
  execute "running build script on #{directory}" do
    Dir.chdir(directory) { system(build_script) }
  end if build_script
end
check!() click to toggle source
# File lib/capistrano/recipes/deploy/strategy/copy.rb, line 72
def check!
  super.check do |d|
    d.local.command(source.local.command) if source.local.command
    d.local.command(compress(nil, nil).first)
    d.remote.command(decompress(nil).first)
  end
end
copy_cache() click to toggle source

Returns the location of the local copy cache, if the strategy should use a local cache + copy instead of a new checkout/export every time. Returns nil unless :copy_cache has been set. If :copy_cache is true, a default cache location will be returned.

# File lib/capistrano/recipes/deploy/strategy/copy.rb, line 84
def copy_cache
  @copy_cache ||= configuration[:copy_cache] == true ?
    File.expand_path(configuration[:application], Dir.tmpdir) :
    File.expand_path(configuration[:copy_cache], Dir.pwd) rescue nil
end
deploy!() click to toggle source

Obtains a copy of the source code locally (via the command method), compresses it to a single file, copies that file to all target servers, and uncompresses it on each of them into the deployment directory.

# File lib/capistrano/recipes/deploy/strategy/copy.rb, line 56
def deploy!
  copy_cache ? run_copy_cache_strategy : run_copy_strategy

  create_revision_file
  compress_repository
  distribute!
ensure
  rollback_changes
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.