Method: IOExtras::AbstractInputStream#readline

Defined in:
lib/zip/ioextras.rb

#readline(aSepString = $/) ⇒ Object

Raises:

  • (EOFError)


102
103
104
105
106
# File 'lib/zip/ioextras.rb', line 102

def readline(aSepString = $/)
  retVal = gets(aSepString)
  raise EOFError if retVal == nil
  return retVal
end