Class: SMPTool::CLI::Commands::ExtractAll

Inherits:
InputCommand show all
Defined in:
lib/smp_tool/cli/commands/extract_all.rb

Overview

Command to extract all files from the volume.

Instance Method Summary collapse

Instance Method Details

#call(input:, **options) ⇒ Object



25
26
27
28
29
30
31
# File 'lib/smp_tool/cli/commands/extract_all.rb', line 25

def call(input:, **options)
  if options[:raw]
    _extract_raw(input: input, **options)
  else
    _extract_txt(input: input, **options)
  end
end