Flowdock
getline() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/net/ftp.rb, line 240
    def getline
      line = @sock.readline # if get EOF, raise EOFError
      line.sub!(/(\r\n|\n|\r)\z/, "")
      if @debug_mode
        print "get: ", sanitize(line), "\n"
      end
      return line
    end
Register or log in to add new notes.