class LSync::Shells::SSH
Public Class Methods
new(options = {})
click to toggle source
Calls superclass method
LSync::Shell::new
# File lib/lsync/shells/ssh.rb, line 27 def initialize(options = {}) super(options[:command] || "ssh", options) end
Public Instance Methods
command_arguments()
click to toggle source
The connection options for ssh
- `:port`
-
The remote port to use.
- `:key`
-
A specific key file to use.
- `:keys`
-
A specific array of key files to use.
- `:timeout`
-
How long to wait until connection fails if no response is received.
- `:compression`
-
Enable compression.
- `:user`
-
Connect as a specific user.
# File lib/lsync/shells/ssh.rb, line 38 def command_arguments args = [] @options.each do |k,v| case(k.to_sym) when :port args += ['-p', v.to_s] when :key args += ['-i', v] when :keys v.each { |key_path| args += ['-i', key_path] } when :timeout args += ['-o', "ConnectTimeout #{v.to_i}".to_cmd] when :compression args += ['-C'] if v when :user args += ['-l', v.to_s] end end return args end
connection_command(server, arguments = [])
click to toggle source
Calls superclass method
LSync::Shell#connection_command
# File lib/lsync/shells/ssh.rb, line 61 def connection_command(server, arguments = []) super(server, arguments + command_arguments) end