Class: XcodeArchiveCache::ArtifactCache::AbstractStorage

Inherits:
Object
  • Object
show all
Defined in:
lib/artifact_cache/abstract_storage.rb

Direct Known Subclasses

LocalStorage

Instance Method Summary collapse

Instance Method Details

#cached_artifact_path(node) ⇒ String

Returns cached artifact path, nil if no cached artifact found.

Parameters:

Returns:

  • (String)

    cached artifact path, nil if no cached artifact found



9
10
11
# File 'lib/artifact_cache/abstract_storage.rb', line 9

def cached_artifact_path(node)
  nil
end

#store(node, path) ⇒ Object



13
14
15
# File 'lib/artifact_cache/abstract_storage.rb', line 13

def store(node, path)

end