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

require_relative "helpers/compact_index"

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

require_relative "helpers/artifice"

Artifice.activate_with(CompactIndexNoGem)