Skip to content

Instantly share code, notes, and snippets.

@wkjagt
Forked from kaiwren/net_http_debug.rb
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wkjagt/c18db10fb67578ebb9c9 to your computer and use it in GitHub Desktop.
Save wkjagt/c18db10fb67578ebb9c9 to your computer and use it in GitHub Desktop.
require 'net/http'
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)
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment