class Bundler::Source::Rubygems

def fetch(spec)

def fetch(spec)
  spec, uri = @spec_fetch_map[spec.full_name]
  if spec
    path = download_gem_from_uri(spec, uri)
    s = Bundler.rubygems.spec_from_gem(path)
    spec.__swap__(s)
  end
end