# File lib/bundler/index.rb, line 19 def initialize_copy(o) super @cache = {} @specs = Hash.new { |h,k| h[k] = [] } o.specs.each do |name, array| @specs[name] = array.dup end end