Created
September 22, 2010 12:48
Revisions
-
kaiwren revised this gist
Sep 22, 2010 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains 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 @@ -2,7 +2,7 @@ module Net class HTTP def self.enable_debug! raise "You don't want to do this in anything but development mode!" unless Rails.env == 'development' class << self alias_method :__new__, :new def new(*args, &blk) -
kaiwren created this gist
Sep 22, 2010 .There are no files selected for viewing
This file contains 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,23 @@ require 'net/http' module Net class HTTP def self.enable_debug! raise "You don't want to do this in production!" if Rails.env == 'production' class << self alias_method :__new__, :new def new(*args, &blk) instance = __new__(*args, &blk) instance.set_debug_output($stderr) instance end end end def self.disable_debug! class << self alias_method :new, :__new__ remove_method :__new__ end end end end