debian-mirror-gitlab/lib/container_registry/registry.rb

20 lines
367 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
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
2018-03-17 18:26:18 +05:30
@uri.sub(%r{^https?://}, '')
2016-06-02 11:05:42 +05:30
end
end
end