Implement Remote#fs

This commit is contained in:
Thibault Jouan
2013-09-24 20:16:08 +00:00
parent 99710b0df9
commit 91f2bc3567
2 changed files with 22 additions and 0 deletions

View File

@@ -14,6 +14,10 @@ module Producer
@session ||= Net::SSH.start(@hostname, Etc.getlogin)
end
def fs
@fs ||= Remote::FS.new(self)
end
def execute(command)
output = ''
session.open_channel do |channel|