Class: UnimatrixCLI::Iris::StreamTranscriber::DescribeCommand
- Defined in:
- lib/unimatrix_cli/iris/stream_transcriber/describe_command.rb
Instance Method Summary collapse
Methods inherited from Command
available_commands, descendants, #initialize, #read_file, #validate, #validate_collection, #write
Methods included from UnimatrixParser
Constructor Details
This class inherits a constructor from UnimatrixCLI::Command
Instance Method Details
#execute ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/unimatrix_cli/iris/stream_transcriber/describe_command.rb', line 11 def execute stream_transcriber = find_stream_transcriber if validate( stream_transcriber, 'Iris::StreamTranscriber' ) parse_object( stream_transcriber ).each do | response | write( message: response ) end else write( message: "StreamTranscriber could not be found: #{ stream_transcriber.inspect }", error: true ) end end |