class Bundler::Source::Git

def specs(*)

def specs(*)
  set_up_app_cache!(app_cache_path) if use_app_cache?
  if requires_checkout? && !@copied
    FileUtils.rm_rf(app_cache_path) if use_app_cache? && git_proxy.not_a_repository?
    fetch
    checkout
  end
  local_specs
end