Welcome to mirror list, hosted at ThFree Co, Russian Federation.

registry.rb « container_registry « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 523364ac7c7bcb59dbb9cbbd6cb5c1fdbc5020b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module ContainerRegistry
  class Registry
    attr_reader :uri, :client, :path

    def initialize(uri, options = {})
      @uri = uri
      @path = options[:path] || default_path
      @client = ContainerRegistry::Client.new(uri, options)
    end

    private

    def default_path
      @uri.sub(%r{^https?://}, '')
    end
  end
end