Sha256: 1e2bc8989d222becae8b05fe388294e3599e77332d90943d43451f3d921ca73e
Contents?: true
Size: 530 Bytes
Versions: 140
Compression:
Stored size: 530 Bytes
Contents
require 'alpha_omega/deploy/strategy/remote' module Capistrano module Deploy module Strategy # Implements the deployment strategy which does an SCM checkout on each # target host. This is the default deployment strategy for Capistrano. class Checkout < Remote protected # Returns the SCM's checkout command for the revision to deploy. def commands @commands ||= source.checkout(revision, configuration[:deploy_release]) end end end end end
Version data entries
140 entries across 140 versions & 1 rubygems