Class: DatabaseRecorder::Storage::Base

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

Direct Known Subclasses

File, Redis

Instance Method Summary collapse

Constructor Details

#initialize(recording, name:, options: {}) ⇒ Base

Returns a new instance of Base.



6
7
8
9
10
# File 'lib/database_recorder/storage/base.rb', line 6

def initialize(recording, name:, options: {})
  @recording = recording
  @name = name
  @options = options
end