Class: UnpackStrategy::SelfExtractingExecutable
- Inherits:
-
GenericUnar
- Object
- GenericUnar
- UnpackStrategy::SelfExtractingExecutable
- Defined in:
- unpack_strategy/self_extracting_executable.rb
Overview
Strategy for unpacking self-extracting executables.
Instance Attribute Summary
Attributes included from UnpackStrategy
Class Method Summary collapse
Methods inherited from GenericUnar
Methods included from UnpackStrategy
#dependencies, 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
14 15 16 17 |
# File 'unpack_strategy/self_extracting_executable.rb', line 14 def self.can_extract?(path) path.magic_number.match?(/\AMZ/n) && path.file_type.include?("self-extracting archive") end |