-
-
Save justincase/34b517b2fe2516f780e81d80c4f0e25c to your computer and use it in GitHub Desktop.
Revisions
-
ahoward created this gist
Dec 10, 2010 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ BEGIN { require 'net/http' Net::HTTP.module_eval do alias_method '__initialize__', 'initialize' def initialize(*args,&block) __initialize__(*args, &block) ensure @debug_output = $stderr ### if ENV['HTTP_DEBUG'] end end }