require 'net/ftp'ftp = Net::FTP.new('ftp.domain.com')ftp.passive = trueftp.loginftp.chdir('/your/folder/name/here')ftp.putbinaryfile('local_file')ftp.close