Class: Onceler::NamedRecording

Inherits:
Recording show all
Defined in:
lib/onceler/recorder.rb

Instance Attribute Summary collapse

Attributes inherited from Recording

#block

Instance Method Summary collapse

Constructor Details

#initialize(block, name = nil) ⇒ NamedRecording

Returns a new instance of NamedRecording.



176
177
178
179
# File 'lib/onceler/recorder.rb', line 176

def initialize(block, name = nil)
  super(block)
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



174
175
176
# File 'lib/onceler/recorder.rb', line 174

def name
  @name
end

Instance Method Details

#prepare_medium!(tape) ⇒ Object



181
182
183
# File 'lib/onceler/recorder.rb', line 181

def prepare_medium!(tape)
  tape.__prepare_recording(self)
end

#record_onto!(tape) ⇒ Object



185
186
187
# File 'lib/onceler/recorder.rb', line 185

def record_onto!(tape)
  tape.send(@name)
end