Skip to content

Instantly share code, notes, and snippets.

@kaiwren
Created September 22, 2010 12:48

Revisions

  1. kaiwren revised this gist Sep 22, 2010. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion net_http_debug.rb
    Original 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 production!" if Rails.env == 'production'
    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)
  2. kaiwren created this gist Sep 22, 2010.
    23 changes: 23 additions & 0 deletions net_http_debug.rb
    Original 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