method

using_each_crlf_line

ruby latest stable - Class: Net::InternetMessageIO
using_each_crlf_line()
private

No documentation available.

# File lib/net/protocol.rb, line 337
    def using_each_crlf_line
      @wbuf = ''.dup
      yield
      if not @wbuf.empty?   # unterminated last line
        write0 dot_stuff(@wbuf.chomp) + "\r\n"
      elsif @written_bytes == 0   # empty src
        write0 "\r\n"
      end
      write0 ".\r\n"
      @wbuf = nil
    end