Class: Ace::Demo::Models::RecordingResult

Inherits:
Object
  • Object
show all
Defined in:
lib/ace/demo/models/recording_result.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#backendObject (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_pathObject (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_pathObject (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_pathObject (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

#verificationObject (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_pathObject (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