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.

11.x SDKs are explicitly excluded - we want the MacOSX11.sdk symlink instead.

/MacOSX(10\.\d+|\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:



23
24
25
26
27
# File 'os/mac/sdk.rb', line 23

def initialize(version, path, source)
  @version = version
  @path = Pathname.new(path)
  @source = source
end

Instance Attribute Details

#pathPathname (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:



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

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:



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

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:



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

def version
  @version
end