method
put_string
![No documentation Importance_0](https://d2vfyqvduarcvs.cloudfront.net/images/importance_0.png?1349367920)
put_string(str)
private
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