class Gem::FakeFetcher

def download_to_cache dependency

def download_to_cache dependency
  found, _ = Gem::SpecFetcher.fetcher.spec_for_dependency dependency
  return if found.empty?
  spec, source = found.first
  download spec, source.uri.to_s
end