summaryrefslogtreecommitdiff
path: root/spec/bundler/support/artifice/endpoint_mirror_source.rb
blob: fed7a746b984e903cb83c127fda711b86cb0e8f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require_relative "helpers/endpoint"

class EndpointMirrorSource < Endpoint
  get "/gems/:id" do
    if request.env["HTTP_X_GEMFILE_SOURCE"] == "https://server.example.org/" && request.env["HTTP_USER_AGENT"].start_with?("bundler")
      File.binread("#{gem_repo1}/gems/#{params[:id]}")
    else
      halt 500
    end
  end
end

require_relative "helpers/artifice"

Artifice.activate_with(EndpointMirrorSource)