Sha256: 907603fcaec47a03a13ddfe1decf4c72278517bbd8e81c33aa9bbf79209378ef
Contents?: true
Size: 389 Bytes
Versions: 28
Compression:
Stored size: 389 Bytes
Contents
# typed: true module Docker module Remote class FakeClient attr_reader :registry_url, :repo, :username, :password attr_accessor :tags def initialize(registry_url, repo, username = nil, password = nil) @registry_url = registry_url @repo = repo @username = username @password = password @tags = [] end end end end
Version data entries
28 entries across 28 versions & 1 rubygems