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

require_relative "compact_index"

Artifice.deactivate

class CompactIndexNoGem < CompactIndexAPI
  get "/gems/:id" do
    halt 500
  end
end

Artifice.activate_with(CompactIndexNoGem)