Class: UnpackStrategy::GenericUnar
- Inherits:
-
Object
- Object
- UnpackStrategy::GenericUnar
- Includes:
- UnpackStrategy
- Defined in:
- Library/Homebrew/unpack_strategy/generic_unar.rb
Overview
Strategy for unpacking archives with unar
.
Direct Known Subclasses
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
15 16 17 |
# File 'Library/Homebrew/unpack_strategy/generic_unar.rb', line 15 def self.can_extract?(_path) false end |
.extensions ⇒ Object
11 12 13 |
# File 'Library/Homebrew/unpack_strategy/generic_unar.rb', line 11 def self.extensions [] end |
Instance Method Details
#dependencies ⇒ Object
19 20 21 |
# File 'Library/Homebrew/unpack_strategy/generic_unar.rb', line 19 def dependencies @dependencies ||= [Formula["unar"]] end |