Skip to content

Instantly share code, notes, and snippets.

View guih's full-sized avatar

Guilherme Matsumoto guih

  • Brazil - Santa Catarina - Florianópolis
View GitHub Profile
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)