class Sftp::Sync::CLI

Public Instance Methods

diff() click to toggle source
# File lib/sftp/sync/cli.rb, line 25
def diff
  runner = Sftp::Sync::Runner.new(options)
  runner.diff
end
list() click to toggle source
# File lib/sftp/sync/cli.rb, line 34
def list
  runner = Sftp::Sync::Runner.new(options)
  runner.list
end
pull() click to toggle source
# File lib/sftp/sync/cli.rb, line 14
def pull
  runner = Sftp::Sync::Runner.new(options)
  runner.pull
end