# File lib/proxifier/env.rb, line 23
    def self.included(klass)
      klass.class_eval do
        alias_method :initialize_without_proxy, :initialize
        alias_method :initialize, :initialize_with_proxy
      end
    end