Class: ArchRequirement Private
- Inherits:
-
Requirement
- Object
- Requirement
- ArchRequirement
- Defined in:
- requirements/arch_requirement.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.
A requirement on a specific architecture.
Constant Summary
Constants included from Dependable
Instance Attribute Summary collapse
- #arch ⇒ Symbol? readonly private
Attributes inherited from Requirement
Attributes included from Dependable
Instance Method Summary collapse
- #display_s ⇒ String private
- #initialize(tags) ⇒ void constructor private
- #message ⇒ String private
Methods inherited from Requirement
cask, download, #env, env, #env_proc, expand, fatal, #fatal?, #mktemp, #modify_build_environment, #option_names, prune, prune?, #satisfied?, #satisfied_result_parent, satisfy
Methods included from BuildEnvironment::DSL
Methods included from Cachable
Methods included from Dependable
#build?, #implicit?, #option_tags, #optional?, #options, #prune_from_option?, #prune_if_build_and_not_dependent?, #recommended?, #required?, #test?
Constructor Details
#initialize(tags) ⇒ 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.
16 17 18 19 |
# File 'requirements/arch_requirement.rb', line 16 def initialize() @arch = T.let(.shift, T.nilable(Symbol)) super end |
Instance Attribute Details
#arch ⇒ Symbol? (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.
13 14 15 |
# File 'requirements/arch_requirement.rb', line 13 def arch @arch end |
Instance Method Details
#display_s ⇒ 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.
40 41 42 |
# File 'requirements/arch_requirement.rb', line 40 def display_s "#{@arch} architecture" end |
#message ⇒ 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.
30 31 32 |
# File 'requirements/arch_requirement.rb', line 30 def "The #{@arch} architecture is required for this software." end |