Class: Ace::Demo::Models::RecordingResult
- Inherits:
-
Object
- Object
- Ace::Demo::Models::RecordingResult
- Defined in:
- lib/ace/demo/models/recording_result.rb
Instance Attribute Summary collapse
-
#backend ⇒ Object
readonly
Returns the value of attribute backend.
-
#cast_path ⇒ Object
readonly
Returns the value of attribute cast_path.
-
#sandbox_path ⇒ Object
readonly
Returns the value of attribute sandbox_path.
-
#tape_path ⇒ Object
readonly
Returns the value of attribute tape_path.
-
#verification ⇒ Object
readonly
Returns the value of attribute verification.
-
#visual_path ⇒ Object
readonly
Returns the value of attribute visual_path.
Instance Method Summary collapse
-
#initialize(backend:, visual_path:, cast_path: nil, verification: nil, tape_path: nil, sandbox_path: nil) ⇒ RecordingResult
constructor
A new instance of RecordingResult.
Constructor Details
#initialize(backend:, visual_path:, cast_path: nil, verification: nil, tape_path: nil, sandbox_path: nil) ⇒ RecordingResult
Returns a new instance of RecordingResult.
9 10 11 12 13 14 15 16 |
# File 'lib/ace/demo/models/recording_result.rb', line 9 def initialize(backend:, visual_path:, cast_path: nil, verification: nil, tape_path: nil, sandbox_path: nil) @backend = backend @visual_path = visual_path @cast_path = cast_path @verification = verification @tape_path = tape_path @sandbox_path = sandbox_path end |
Instance Attribute Details
#backend ⇒ Object (readonly)
Returns the value of attribute backend.
7 8 9 |
# File 'lib/ace/demo/models/recording_result.rb', line 7 def backend @backend end |
#cast_path ⇒ Object (readonly)
Returns the value of attribute cast_path.
7 8 9 |
# File 'lib/ace/demo/models/recording_result.rb', line 7 def cast_path @cast_path end |
#sandbox_path ⇒ Object (readonly)
Returns the value of attribute sandbox_path.
7 8 9 |
# File 'lib/ace/demo/models/recording_result.rb', line 7 def sandbox_path @sandbox_path end |
#tape_path ⇒ Object (readonly)
Returns the value of attribute tape_path.
7 8 9 |
# File 'lib/ace/demo/models/recording_result.rb', line 7 def tape_path @tape_path end |
#verification ⇒ Object (readonly)
Returns the value of attribute verification.
7 8 9 |
# File 'lib/ace/demo/models/recording_result.rb', line 7 def verification @verification end |
#visual_path ⇒ Object (readonly)
Returns the value of attribute visual_path.
7 8 9 |
# File 'lib/ace/demo/models/recording_result.rb', line 7 def visual_path @visual_path end |