summaryrefslogtreecommitdiff
path: root/lib/container_registry/registry.rb
blob: d3b117eeacab17043c1df858c3065396790876c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module ContainerRegistry
  class Registry
    attr_reader :uri, :client, :path

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

    def [](name)
      ContainerRegistry::Repository.new(self, name)
    end
  end
end