Class: Host::Local
Defined Under Namespace
Classes: SSHError
Instance Attribute Summary
Attributes inherited from Host
#host, #port, #user_name
Instance Method Summary
collapse
Methods inherited from Host
#control_path_string, from_string, #setup, #sshfs
Constructor Details
#initialize ⇒ Local
Returns a new instance of Local.
55
56
57
|
# File 'lib/hostmanager.rb', line 55
def initialize
@host = @name = nil
end
|
Instance Method Details
#remote? ⇒ Boolean
67
68
69
|
# File 'lib/hostmanager.rb', line 67
def remote?
false
end
|
#rsync_scp_local ⇒ Object
61
62
63
|
# File 'lib/hostmanager.rb', line 61
def rsync_scp_local
""
end
|
#rsync_scp_remote ⇒ Object
58
59
60
|
# File 'lib/hostmanager.rb', line 58
def rsync_scp_remote
""
end
|
#ssh ⇒ Object
64
65
66
|
# File 'lib/hostmanager.rb', line 64
def ssh
""
end
|