Thank you for your help.
I found this from a previous post ...
I found that Net::FTP does not offer
the option to use SITE commands
Fortunately, I was able to add it easily enough:
def site(sitecmd)
cmd = 'SITE ' + sitecmd
voidcmd(cmd)
end
ftp.site('chmod 755 somefile')