summaryrefslogtreecommitdiff
path: root/spec/bundler/support/artifice/compact_index_checksum_mismatch.rb
blob: a6545b9ee4b5749be4852d607991075ff50d9e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require_relative "helpers/compact_index"

class CompactIndexChecksumMismatch < CompactIndexAPI
  get "/versions" do
    headers "ETag" => quote("123")
    headers "Surrogate-Control" => "max-age=2592000, stale-while-revalidate=60"
    content_type "text/plain"
    body ""
  end
end

require_relative "helpers/artifice"

Artifice.activate_with(CompactIndexChecksumMismatch)