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

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

Artifice.deactivate

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

Artifice.activate_with(CompactIndexNoGem)