Class: UnpackStrategy::P7Zip
- Includes:
- UnpackStrategy
- Defined in:
- unpack_strategy/p7zip.rb
Overview
Strategy for unpacking P7ZIP archives.
Instance Attribute Summary
Attributes included from UnpackStrategy
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
14 15 16 |
# File 'unpack_strategy/p7zip.rb', line 14 def self.can_extract?(path) path.magic_number.match?(/\A7z\xBC\xAF\x27\x1C/n) end |