Sha256: b1764b4e78dc120c3f496e9373e0bd62955ab8b6bdc21a15358c7c64c6be81a5
Contents?: true
Size: 762 Bytes
Versions: 16
Compression:
Stored size: 762 Bytes
Contents
# typed: strict module Kuby module Docker class BuildError < StandardError; end class PushError < StandardError; end class PullError < StandardError; end class LoginError < StandardError; end class MissingTagError < StandardError extend T::Sig sig { returns(String) } attr_reader :tag sig { params(tag: String).void } def initialize(tag) @tag = tag @message = T.let(@message, T.nilable(String)) end sig { returns(String) } def message @message ||= "Could not find tag '#{tag}'." end end class UnsupportedDistroError < StandardError; end class MissingPackageError < StandardError; end class MissingDistroError < StandardError; end end end
Version data entries
16 entries across 16 versions & 1 rubygems