method

each

v1_9_1_378 - Show latest stable - Class: Buffering
each(eol=$/)
public

No documentation available.

# File ext/openssl/lib/openssl/buffering.rb, line 120
  def each(eol=$/)
    while line = self.gets(eol)
      yield line
    end
  end