Class: UnpackStrategy::Dmg Private
- Extended by:
- SystemCommand::Mixin, ClassMethods
- Includes:
- UnpackStrategy
- Defined in:
- unpack_strategy/dmg.rb
Overview
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Strategy for unpacking disk images.
Defined Under Namespace
Modules: Bom
Constant Summary
Constants included from UnpackStrategy
Instance Attribute Summary
Attributes included from UnpackStrategy
Class Method Summary collapse
- .can_extract?(path) ⇒ Boolean private
- .extensions ⇒ Array<String> private
Methods included from SystemCommand::Mixin
system_command, system_command!
Methods included from ClassMethods
Methods included from UnpackStrategy
#dependencies, detect, #each_directory, #extract, #extract_nestedly, from_extension, from_magic, from_type, #initialize
Methods included from Utils::Output::Mixin
#odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #pretty_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled
Class Method Details
.can_extract?(path) ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
181 182 183 184 |
# File 'unpack_strategy/dmg.rb', line 181 def self.can_extract?(path) stdout, _, status = system_command("hdiutil", args: ["imageinfo", "-format", path], print_stderr: false) status.success? && !stdout.empty? end |
.extensions ⇒ Array<String>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
176 177 178 |
# File 'unpack_strategy/dmg.rb', line 176 def self.extensions [".dmg"] end |