Module: FluentCommandBuilder::SevenZip::V92

Defined in:
lib/fluent_command_builder/command_builders/sevenzip_92.rb

Defined Under Namespace

Classes: Add, Bench, Delete, Extract, ExtractWithFullPaths, List, SevenZip, Test, Update

Constant Summary collapse

COMMAND_NAME =
'7za'

Instance Method Summary collapse

Instance Method Details

#sevenzip {|builder| ... } ⇒ Object

Yields:

  • (builder)


504
505
506
507
508
509
# File 'lib/fluent_command_builder/command_builders/sevenzip_92.rb', line 504

def sevenzip
  builder = CommandBuilder.new COMMAND_NAME
  command = SevenZip.new builder
  yield builder if block_given?
  command
end