Class: UnpackStrategy::GenericUnar Private

Inherits:
Object
  • Object
show all
Extended by:
ClassMethods
Includes:
UnpackStrategy
Defined in:
unpack_strategy/generic_unar.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 archives with unar.

Direct Known Subclasses

SelfExtractingExecutable, Sit

Constant Summary

Constants included from UnpackStrategy

UnpackStrategyType

Constants included from Kernel

Kernel::IGNORE_INTERRUPTS_MUTEX

Instance Attribute Summary

Attributes included from UnpackStrategy

#merge_xattrs, #path

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ClassMethods

can_extract?, extensions

Methods included from UnpackStrategy

detect, #each_directory, #extract, #extract_nestedly, from_extension, from_magic, from_type, #initialize

Methods included from Kernel

#disk_usage_readable, #ensure_executable!, #ensure_formula_installed!, #exec_browser, #exec_editor, #ignore_interrupts, #interactive_shell, #number_readable, #odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #paths, #pretty_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled, #quiet_system, #redact_secrets, #redirect_stdout, #require?, #safe_system, #tap_and_name_comparison, #truncate_text_to_approximate_size, #which, #which_all, #which_editor, #with_custom_locale, #with_env, #with_homebrew_path

Methods included from SystemCommand::Mixin

#system_command, #system_command!

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.

Parameters:

Returns:

  • (Boolean)


15
16
17
# File 'unpack_strategy/generic_unar.rb', line 15

def self.can_extract?(_path)
  false
end

.extensionsArray<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.

Returns:



10
11
12
# File 'unpack_strategy/generic_unar.rb', line 10

def self.extensions
  []
end

Instance Method Details

#dependenciesArray<Formula>?

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.

Returns:



20
21
22
# File 'unpack_strategy/generic_unar.rb', line 20

def dependencies
  @dependencies ||= T.let([Formula["unar"]], T.nilable(T::Array[Formula]))
end