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

require_relative "helpers/compact_index"

class CompactIndexApiMissing < CompactIndexAPI
  get "/fetch/actual/gem/:id" do
    halt 404
  end
end

require_relative "helpers/artifice"

Artifice.activate_with(CompactIndexApiMissing)