Flowdock
put_string(str) private

No documentation

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

Hide source
# File lib/net/imap.rb, line 1167
    def put_string(str)
      @sock.print(str)
      if @@debug
        if @debug_output_bol
          $stderr.print("C: ")
        end
        $stderr.print(str.gsub(/\n(?!\z)/, "\nC: "))
        if /\r\n\z/.match(str)
          @debug_output_bol = true
        else
          @debug_output_bol = false
        end
      end
    end
Register or log in to add new notes.