Sha256: 48d846f87e98739afedd51a7f3153e8c3d8fe5224f519d96f1c01196b0713135
Contents?: true
Size: 358 Bytes
Versions: 57
Compression:
Stored size: 358 Bytes
Contents
class KuberKit::Core::EnvFiles::ArtifactFile < KuberKit::Core::EnvFiles::AbstractEnvFile attr_reader :artifact_name, :file_path def initialize(env_file_name, artifact_name:, file_path:) super(env_file_name) @artifact_name = artifact_name @file_path = file_path end def uniq_name [@artifact_name.to_s, @name.to_s].join("-") end end
Version data entries
57 entries across 57 versions & 1 rubygems