each(eol=$/)
Executes the block for every line in the stream where lines are separated by eol.
See also #gets
# File ext/openssl/lib/openssl/buffering.rb, line 227 def each(eol=$/) while line = self.gets(eol) yield line end end