class Rake::FtpUploader

def initialize(path, host, account, password)

path of the uploader.
using the given account and password. +path+ will be the root
Create an FTP uploader targeting the directory +path+ on +host+
def initialize(path, host, account, password)
  @created = Hash.new
  @path = path
  @ftp = Net::FTP.new(host, account, password)
  makedirs(@path)
  @ftp.chdir(@path)
end