module Bcome::Ssh::DriverCommandStrings
Public Instance Methods
local_port_forward_command(start_port, end_port)
click to toggle source
# File lib/objects/ssh/driver_concerns/command_strings.rb, line 13 def local_port_forward_command(start_port, end_port) connection_wrangler.get_local_port_forward_command(start_port, end_port) end
rsync_command(local_path, remote_path)
click to toggle source
# File lib/objects/ssh/driver_concerns/command_strings.rb, line 9 def rsync_command(local_path, remote_path) connection_wrangler.get_rsync_command(local_path, remote_path) end
ssh_command(as_pseudo_tty = false)
click to toggle source
# File lib/objects/ssh/driver_concerns/command_strings.rb, line 5 def ssh_command(as_pseudo_tty = false) connection_wrangler.get_ssh_command(as_pseudo_tty: as_pseudo_tty) end