ruby/spec/bundler/support/artifice/compact_index_no_gem.rb
2022-12-15 19:06:40 +09:00

13 lines
239 B
Ruby

# 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)