Class: OS::Mac::SDK Private
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.
Class representing a macOS SDK.
Constant Summary collapse
- VERSIONED_SDK_REGEX =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
/MacOSX(\d+)\.sdk$/
Instance Attribute Summary collapse
- #path ⇒ ::Pathname readonly private
- #source ⇒ Symbol readonly private
- #version ⇒ MacOSVersion readonly private
Instance Method Summary collapse
- #initialize(version, path, source) ⇒ void constructor private
Constructor Details
#initialize(version, path, source) ⇒ 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.
22 23 24 25 26 |
# File 'os/mac/sdk.rb', line 22 def initialize(version, path, source) @version = version @path = T.let(Pathname(path), ::Pathname) @source = source 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.
16 17 18 |
# File 'os/mac/sdk.rb', line 16 def path @path end |
#source ⇒ 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.
19 20 21 |
# File 'os/mac/sdk.rb', line 19 def source @source end |
#version ⇒ MacOSVersion (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 'os/mac/sdk.rb', line 13 def version @version end |