Class: SMPTool::CLI::Commands::Extract
- Inherits:
-
InputCommand
- Object
- Dry::CLI::Command
- BaseCommand
- InputCommand
- SMPTool::CLI::Commands::Extract
- Defined in:
- lib/smp_tool/cli/commands/extract.rb
Overview
Command to extract individual files from the volume.
Instance Method Summary collapse
Instance Method Details
#call(input:, f_list:, **options) ⇒ Object
31 32 33 34 35 36 37 |
# File 'lib/smp_tool/cli/commands/extract.rb', line 31 def call(input:, f_list:, **) if [:raw] _extract_raw(input: input, f_list: f_list, **) else _extract_txt(input: input, f_list: f_list, **) end end |