Class: UnpackStrategy::GenericUnar

Inherits:
Object
  • Object
show all
Includes:
UnpackStrategy
Defined in:
unpack_strategy/generic_unar.rb

Overview

Strategy for unpacking archives with unar.

Direct Known Subclasses

SelfExtractingExecutable, Sit

Instance Attribute Summary

Attributes included from UnpackStrategy

#merge_xattrs, #path

Class Method Summary collapse

Instance Method Summary collapse

Methods included from UnpackStrategy

detect, #each_directory, #extract, #extract_nestedly, from_extension, from_magic, from_type, #initialize

Methods included from SystemCommand::Mixin

#system_command, #system_command!

Class Method Details

.can_extract?(_path) ⇒ Boolean

Returns:

  • (Boolean)


14
15
16
# File 'unpack_strategy/generic_unar.rb', line 14

def self.can_extract?(_path)
  false
end

.extensionsArray<String>

Returns:



10
11
12
# File 'unpack_strategy/generic_unar.rb', line 10

def self.extensions
  []
end

Instance Method Details

#dependenciesObject



18
19
20
# File 'unpack_strategy/generic_unar.rb', line 18

def dependencies
  @dependencies ||= [Formula["unar"]]
end