Class: RakeSecrets::Storage::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/rake_secrets/storage/base.rb

Direct Known Subclasses

FileSystem, InMemory

Instance Method Summary collapse

Instance Method Details

#remove(_path) ⇒ Object



12
13
14
# File 'lib/rake_secrets/storage/base.rb', line 12

def remove(_path)
  raise(Errors::UnsupportedOperationError, '#remove not supported.')
end

#retrieve(_path) ⇒ Object



16
17
18
# File 'lib/rake_secrets/storage/base.rb', line 16

def retrieve(_path)
  raise(Errors::UnsupportedOperationError, '#retrieve not supported.')
end

#store(_path, _content) ⇒ Object



8
9
10
# File 'lib/rake_secrets/storage/base.rb', line 8

def store(_path, _content)
  raise(Errors::UnsupportedOperationError, '#store not supported.')
end