Module for intercepting Socket methods and dumps in/out to given debugging device. debug_dev must respond to <<.
# File lib/httpclient/session.rb, line 430
430: def <<(str)
431: super
432: debug(str)
433: end
# File lib/httpclient/session.rb, line 407
407: def close
408: super
409: debug("! CONNECTION CLOSED\n")
410: end
# File lib/httpclient/session.rb, line 403
403: def debug_dev=(debug_dev)
404: @debug_dev = debug_dev
405: end
# File lib/httpclient/session.rb, line 412
412: def gets(*args)
413: str = super
414: debug(str)
415: str
416: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.