Class: OS::Mac::SDK Private

Inherits:
Object show all
Defined in:
os/mac/sdk.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.

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

Instance Method Summary collapse

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.

Parameters:



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.

Returns:



16
17
18
# File 'os/mac/sdk.rb', line 16

def path
  @path
end

#sourceSymbol (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.

Returns:



19
20
21
# File 'os/mac/sdk.rb', line 19

def source
  @source
end

#versionMacOSVersion (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.

Returns:



13
14
15
# File 'os/mac/sdk.rb', line 13

def version
  @version
end