Class: KuberKit::ArtifactsSync::Strategies::Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/kuber_kit/artifacts_sync/strategies/abstract.rb

Direct Known Subclasses

GitUpdater, NullUpdater

Instance Method Summary collapse

Instance Method Details

#cleanup(shell, artifact) ⇒ Object



6
7
8
# File 'lib/kuber_kit/artifacts_sync/strategies/abstract.rb', line 6

def cleanup(shell, artifact)
  raise KuberKit::NotImplementedError, "must be implemented"
end

#update(shell, artifact) ⇒ Object



2
3
4
# File 'lib/kuber_kit/artifacts_sync/strategies/abstract.rb', line 2

def update(shell, artifact)
  raise KuberKit::NotImplementedError, "must be implemented"
end