class Bundler::Source::Git

def specs(*)

def specs(*)
  set_local!(app_cache_path) if has_app_cache? && !local?
  if requires_checkout? && !@copied
    fetch
    git_proxy.copy_to(install_path, submodules)
    serialize_gemspecs_in(install_path)
    @copied = true
  end
  local_specs
end