class Capistrano::Pending::SCM::Svn

Public Instance Methods

diff(from, to) click to toggle source
# File lib/capistrano/pending/scm/svn.rb, line 14
def diff(from, to)
  to = :HEAD if to.to_sym == :master
  svn :diff, "-r#{from}:#{to}"
end
log(from, to) click to toggle source
# File lib/capistrano/pending/scm/svn.rb, line 9
def log(from, to)
  to = :HEAD if to.to_sym == :master
  svn :log, "-r#{from}:#{to}"
end