File: //usr/local/rvm/src/ruby-2.7.4/spec/bundler/support/artifice/compact_index_range_not_satisfiable.rb
# frozen_string_literal: true
require_relative "compact_index"
Artifice.deactivate
class CompactIndexRangeNotSatisfiable < CompactIndexAPI
get "/versions" do
if env["HTTP_RANGE"]
status 416
else
etag_response do
file = tmp("versions.list")
file.delete if file.file?
file = CompactIndex::VersionsFile.new(file.to_s)
file.create(gems)
file.contents
end
end
end
get "/info/:name" do
if env["HTTP_RANGE"]
status 416
else
etag_response do
gem = gems.find {|g| g.name == params[:name] }
CompactIndex.info(gem ? gem.versions : [])
end
end
end
end
Artifice.activate_with(CompactIndexRangeNotSatisfiable)