Sha256: 57a3430a6916ffe7d9c14b5d838bec10ce8272ef0108bf2b298073caa5261d64
Contents?: true
Size: 471 Bytes
Versions: 8
Compression:
Stored size: 471 Bytes
Contents
# frozen_string_literal: true require_relative '../errors' module RakeSecrets module Storage class Base def store(_path, _content) raise(Errors::UnsupportedOperationError, '#store not supported.') end def remove(_path) raise(Errors::UnsupportedOperationError, '#remove not supported.') end def retrieve(_path) raise(Errors::UnsupportedOperationError, '#retrieve not supported.') end end end end
Version data entries
8 entries across 8 versions & 1 rubygems