Module: Utils::Bottles::MacOSOverride Private

Included in:
Utils::Bottles
Defined in:
extend/os/mac/utils/bottles.rb

This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.

Instance Method Summary collapse

Instance Method Details

#tag(tag = nil) ⇒ Tag

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:

Returns:



9
10
11
12
13
# File 'extend/os/mac/utils/bottles.rb', line 9

def tag(tag = nil)
  return Tag.new(system: MacOS.version.to_sym, arch: Hardware::CPU.arch) if tag.nil?

  super
end