Class: UnpackStrategy::Zstd
- Inherits:
-
Object
- Object
- UnpackStrategy::Zstd
- Extended by:
- T::Sig
- Includes:
- UnpackStrategy
- Defined in:
- unpack_strategy/zstd.rb
Overview
Strategy for unpacking zstd archives.
Instance Attribute Summary
Attributes included from UnpackStrategy
Class Method Summary collapse
Instance Method Summary collapse
Methods included from UnpackStrategy
detect, #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
18 19 20 |
# File 'unpack_strategy/zstd.rb', line 18 def self.can_extract?(path) path.magic_number.match?(/\x28\xB5\x2F\xFD/n) end |
.extensions ⇒ Array<String>
14 15 16 |
# File 'unpack_strategy/zstd.rb', line 14 def self.extensions [".zst"] end |
Instance Method Details
#dependencies ⇒ Object
22 23 24 |
# File 'unpack_strategy/zstd.rb', line 22 def dependencies @dependencies ||= [Formula["zstd"]] end |