Class: Glaemscribe::API::ModeDebugContext

Inherits:
Object
  • Object
show all
Defined in:
lib/api/mode.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeModeDebugContext

Returns a new instance of ModeDebugContext.



33
34
35
36
37
38
39
# File 'lib/api/mode.rb', line 33

def initialize
  @preprocessor_output  = ""
  @processor_pathes     = []
  @processor_output     = []
  @postprocessor_output = ""
  @tts_output = ""
end

Instance Attribute Details

#postprocessor_outputObject

Returns the value of attribute postprocessor_output.



27
28
29
# File 'lib/api/mode.rb', line 27

def postprocessor_output
  @postprocessor_output
end

#preprocessor_outputObject

Returns the value of attribute preprocessor_output.



27
28
29
# File 'lib/api/mode.rb', line 27

def preprocessor_output
  @preprocessor_output
end

#processor_outputObject

Returns the value of attribute processor_output.



27
28
29
# File 'lib/api/mode.rb', line 27

def processor_output
  @processor_output
end

#processor_pathesObject

Returns the value of attribute processor_pathes.



27
28
29
# File 'lib/api/mode.rb', line 27

def processor_pathes
  @processor_pathes
end

#tts_outputObject

Returns the value of attribute tts_output.



27
28
29
# File 'lib/api/mode.rb', line 27

def tts_output
  @tts_output
end