Class: UnimatrixCLI::Alchemist::VideoEncoder::ListCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/unimatrix_cli/alchemist/video_encoder/list_command.rb

Instance Method Summary collapse

Methods inherited from Command

available_commands, descendants, #initialize, #read_file, #validate, #validate_collection, #write

Methods included from UnimatrixParser

included

Constructor Details

This class inherits a constructor from UnimatrixCLI::Command

Instance Method Details

#executeObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/unimatrix_cli/alchemist/video_encoder/list_command.rb', line 10

def execute
  video_encoders = find_video_encoders
  
  if validate_collection( video_encoders, 'Alchemist::VideoEncoder' )
    video_encoders.each do | video_encoder | 
      write( message: video_encoder.uuid )
    end
  else
    write( 
      message: "No video_encoders found: #{ video_encoders.inspect }", 
      error: true 
    )
  end
end