Sha256: 506f7627e22d92975b3d8a0a8b75b94556384567dbe7c7b7ebbd578c5535817b
Contents?: true
Size: 528 Bytes
Versions: 121
Compression:
Stored size: 528 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[:release_path]) end end end end end
Version data entries
121 entries across 121 versions & 1 rubygems