Class: Knj::Fs::Ssh

Inherits:
Object show all
Defined in:
lib/knj/fs/drivers/ssh.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ Ssh

Returns a new instance of Ssh.



24
25
26
27
# File 'lib/knj/fs/drivers/ssh.rb', line 24

def initialize(args)
  @args = args
  raise "Stub!"
end

Class Method Details

.argsObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/knj/fs/drivers/ssh.rb', line 2

def self.args
  return [
    {
      "title" => "Hostname",
      "name" => "texhostname"
    },
    {
      "title" => "Port",
      "name" => "texport"
    },
    {
      "title" => "Username",
      "name" => "texusername"
    },
    {
      "title" => "Password",
      "name" => "texpassword",
      "type" => "password"
    }
  ]
end