module Bundler::Plugin

def reset!

def reset!
  instance_variables.each {|i| remove_instance_variable(i) }
  @sources = {}
  @commands = {}
  @hooks_by_event = Hash.new {|h, k| h[k] = [] }
  @loaded_plugin_names = []
end