Method: Net::FTP::BufferedSocket#readline

Defined in:
lib/net/ftp.rb

#readlineObject



1112
1113
1114
1115
1116
1117
1118
# File 'lib/net/ftp.rb', line 1112

def readline
  line = gets
  if line.nil?
    raise EOFError, "end of file reached"
  end
  return line
end