Class: Cask::Artifact::Pkg Private
- Inherits:
-
AbstractArtifact
- Object
- AbstractArtifact
- Cask::Artifact::Pkg
- Defined in:
- cask/artifact/pkg.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.
Artifact corresponding to the pkg stanza.
Constant Summary
Constants inherited from AbstractArtifact
AbstractArtifact::DirectivesType
Instance Attribute Summary collapse
- #path ⇒ Pathname readonly private
- #stanza_options ⇒ Hash{Symbol => T.untyped} readonly private
Attributes inherited from AbstractArtifact
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(cask, path, **stanza_options) ⇒ void constructor private
- #install_phase(command: SystemCommand, verbose: false, **_options) ⇒ void private
- #summarize ⇒ String private
Methods inherited from AbstractArtifact
#config, dirmethod, dsl_key, english_article, english_name, read_script_arguments, #sort_order, #staged_path_join_executable, #to_args
Methods included from Utils::Output::Mixin
#odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #pretty_deprecated, #pretty_disabled, #pretty_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled
Constructor Details
#initialize(cask, path, **stanza_options) ⇒ void
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.
27 28 29 30 31 |
# File 'cask/artifact/pkg.rb', line 27 def initialize(cask, path, **) super @path = T.let(cask.staged_path.join(path), Pathname) @stanza_options = T.let(, T::Hash[Symbol, T.untyped]) end |
Instance Attribute Details
#path ⇒ Pathname (readonly)
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.
15 16 17 |
# File 'cask/artifact/pkg.rb', line 15 def path @path end |
#stanza_options ⇒ Hash{Symbol => T.untyped} (readonly)
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.
18 19 20 |
# File 'cask/artifact/pkg.rb', line 18 def @stanza_options end |
Class Method Details
.from_args(cask, path, **stanza_options) ⇒ T.attached_class
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.
21 22 23 24 |
# File 'cask/artifact/pkg.rb', line 21 def self.from_args(cask, path, **) .assert_valid_keys(:allow_untrusted, :choices) new(cask, path, **) end |
Instance Method Details
#install_phase(command: SystemCommand, verbose: false, **_options) ⇒ void
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.
This method returns an undefined value.
45 46 47 |
# File 'cask/artifact/pkg.rb', line 45 def install_phase(command: SystemCommand, verbose: false, **) run_installer(command:, verbose:) end |
#summarize ⇒ 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.
34 35 36 |
# File 'cask/artifact/pkg.rb', line 34 def summarize path.relative_path_from(cask.staged_path).to_s end |