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

require File.expand_path("../compact_index", __FILE__)

Artifice.deactivate

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

Artifice.activate_with(CompactIndexChecksumMismatch)