class Knj::Fs::Ftp

Public Class Methods

args() click to toggle source
# File lib/knj/fs/drivers/ftp.rb, line 2
def self.args
  return [
    {
      "title" => "Hostname",
      "name" => "texhost"
    },
    {
      "title" => "Port",
      "name" => "texport"
    },
    {
      "title" => "Username",
      "name" => "texusername"
    },
    {
      "title" => "Password",
      "name" => "texpassword",
      "type" => "password"
    },
    {
      "title" => "Passive?",
      "name" => "chepassive",
      "type" => "checkbox"
    }
  ]
end
new(args) click to toggle source
# File lib/knj/fs/drivers/ftp.rb, line 29
def initialize(args)
  @args = args
  raise "Stub!"
end