class Gem::Indexer

def compress_indices

def compress_indices
  say "Compressing indices"
  Gem.time 'Compressed indices' do
    if @build_modern then
      gzip @specs_index
      gzip @latest_specs_index
      gzip @prerelease_specs_index
    end
  end
end