class Bundler::Index

def initialize_copy(o)

def initialize_copy(o)
  super
  @sources = @sources.dup
  @cache = {}
  @specs = Hash.new { |h,k| h[k] = [] }
  o.specs.each do |name, array|
    @specs[name] = array.dup
  end
end