Sha256: 146a9dd52010d1380bb84582307721f320e95244f895045719fe80c47ca689b5
Contents?: true
Size: 423 Bytes
Versions: 34
Compression:
Stored size: 423 Bytes
Contents
require "capistrano/plugin" require "capistrano/scm" # Base class for all built-in and third-party SCM plugins. Notice that this # class doesn't really do anything other than provide an `scm?` predicate. This # tells Capistrano that the plugin provides SCM functionality. All other plugin # features are inherited from Capistrano::Plugin. # class Capistrano::SCM::Plugin < Capistrano::Plugin def scm? true end end
Version data entries
34 entries across 34 versions & 2 rubygems