class KuberKit::Core::EnvFiles::ArtifactFile

Attributes

artifact_name[R]
file_path[R]

Public Class Methods

new(env_file_name, artifact_name:, file_path:) click to toggle source
# File lib/kuber_kit/core/env_files/artifact_file.rb, line 4
def initialize(env_file_name, artifact_name:, file_path:)
  super(env_file_name)
  @artifact_name = artifact_name
  @file_path = file_path
end

Public Instance Methods

uniq_name() click to toggle source
# File lib/kuber_kit/core/env_files/artifact_file.rb, line 10
def uniq_name
  [@artifact_name.to_s, @name.to_s].join("-")
end