Sha256: 94c82e372e4cbb2c7b91d162ef695dd950579dfecf20ca64065c7889a20224d8
Contents?: true
Size: 469 Bytes
Versions: 99
Compression:
Stored size: 469 Bytes
Contents
require 'capistrano/recipes/deploy/strategy/remote' module Capistrano module Deploy module Strategy # Implements the deployment strategy which does an SCM export on each # target host. class Export < Remote protected # Returns the SCM's export command for the revision to deploy. def command @command ||= source.export(revision, configuration[:release_path]) end end end end end
Version data entries
99 entries across 99 versions & 11 rubygems