Class: Tab Private

Inherits:
AbstractTab show all
Defined in:
tab/tab.rb

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.

Constant Summary collapse

Cache =

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.

type_template { { fixed: T::Hash[T.any(Pathname, String), T.untyped] } }

Constants inherited from AbstractTab

AbstractTab::FILENAME, AbstractTab::RuntimeDependencies

Instance Attribute Summary collapse

Attributes inherited from AbstractTab

#arch, #built_on, #homebrew_version, #installed_on_request, #loaded_from_api, #loaded_from_internal_api, #source, #tabfile, #time

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractTab

from_file, #installed_on_request_present?, #parsed_homebrew_version, #tap, #tap=

Methods included from Cachable

#cache, #clear_cache

Constructor Details

#initialize(poured_from_bottle: nil, built_as_bottle: nil, built_prefix: nil, padded_prefix: nil, changed_files: nil, linkage_files: nil, binary_relocation_files: nil, relocated_build_prefix: nil, relocated_files: nil, stdlib: nil, aliases: nil, used_options: nil, unused_options: nil, compiler: nil, source_modified_time: nil, tapped_from: nil, **rest) ⇒ 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:

  • poured_from_bottle (Boolean, nil) (defaults to: nil)
  • built_as_bottle (Boolean, nil) (defaults to: nil)
  • built_prefix (String, nil) (defaults to: nil)
  • padded_prefix (Boolean, nil) (defaults to: nil)
  • changed_files (Array<Pathname, String>, nil) (defaults to: nil)
  • linkage_files (Array<Pathname, String>, nil) (defaults to: nil)
  • binary_relocation_files (Array<Pathname, String>, nil) (defaults to: nil)
  • relocated_build_prefix (String, nil) (defaults to: nil)
  • relocated_files (Array<Pathname, String>, nil) (defaults to: nil)
  • stdlib (String, Symbol, nil) (defaults to: nil)
  • aliases (Array<String>, nil) (defaults to: nil)
  • used_options (Array<String>, nil) (defaults to: nil)
  • unused_options (Array<String>, nil) (defaults to: nil)
  • compiler (String, Symbol, nil) (defaults to: nil)
  • source_modified_time (Integer, nil) (defaults to: nil)
  • tapped_from (String, nil) (defaults to: nil)
  • rest (T.untyped)


78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'tab/tab.rb', line 78

def initialize(poured_from_bottle: nil, built_as_bottle: nil, built_prefix: nil, padded_prefix: nil,
               changed_files: nil,
               linkage_files: nil, binary_relocation_files: nil, relocated_build_prefix: nil,
               relocated_files: nil, stdlib: nil, aliases: nil, used_options: nil, unused_options: nil,
               compiler: nil, source_modified_time: nil, tapped_from: nil, **rest)
  @poured_from_bottle = poured_from_bottle
  @built_as_bottle = built_as_bottle
  @built_prefix = built_prefix
  @padded_prefix = padded_prefix
  @changed_files = T.let(changed_files&.map { |f| Pathname(f) }, T.nilable(T::Array[Pathname]))
  @linkage_files = T.let(linkage_files&.map { |f| Pathname(f) }, T.nilable(T::Array[Pathname]))
  @binary_relocation_files = T.let(
    binary_relocation_files&.map { |f| Pathname(f) },
    T.nilable(T::Array[Pathname]),
  )
  @relocated_build_prefix = relocated_build_prefix
  @relocated_files = T.let(relocated_files&.map { |f| Pathname(f) }, T.nilable(T::Array[Pathname]))
  @stdlib = stdlib
  @aliases = aliases
  @used_options = used_options
  @unused_options = unused_options
  @compiler = compiler
  @source_modified_time = source_modified_time
  @tapped_from = tapped_from

  super(**rest)
end

Instance Attribute Details

#aliasesArray<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.

Returns:



26
27
28
# File 'tab/tab.rb', line 26

def aliases
  @aliases
end

#binary_relocation_filesArray<Pathname>?

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:



50
51
52
# File 'tab/tab.rb', line 50

def binary_relocation_files
  @binary_relocation_files
end

#built_as_bottleBoolean?

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:

  • (Boolean, nil)


14
15
16
# File 'tab/tab.rb', line 14

def built_as_bottle
  @built_as_bottle
end

#built_prefixString?

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 'tab/tab.rb', line 17

def built_prefix
  @built_prefix
end

#changed_filesArray<Pathname>?

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:



44
45
46
# File 'tab/tab.rb', line 44

def changed_files
  @changed_files
end

#compilerString, Symbol

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:



346
347
348
# File 'tab/tab.rb', line 346

def compiler
  @compiler || DevelopmentTools.default_compiler
end

#linkage_filesArray<Pathname>?

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:



47
48
49
# File 'tab/tab.rb', line 47

def linkage_files
  @linkage_files
end

#padded_prefixBoolean?

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:

  • (Boolean, nil)


20
21
22
# File 'tab/tab.rb', line 20

def padded_prefix
  @padded_prefix
end

#poured_from_bottleBoolean?

This method is part of an internal API. This method may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Check whether the formula was poured from a bottle.

Returns:

  • (Boolean, nil)


11
12
13
# File 'tab/tab.rb', line 11

def poured_from_bottle
  @poured_from_bottle
end

#relocated_build_prefixString?

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.

The prefix a poured bottle was built for, when it was patched in place.

Returns:



54
55
56
# File 'tab/tab.rb', line 54

def relocated_build_prefix
  @relocated_build_prefix
end

#relocated_filesArray<Pathname>?

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:



57
58
59
# File 'tab/tab.rb', line 57

def relocated_files
  @relocated_files
end

#source_modified_timeTime

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:



400
401
402
# File 'tab/tab.rb', line 400

def source_modified_time
  Time.at(@source_modified_time || 0)
end

#stdlibString, ...

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:



23
24
25
# File 'tab/tab.rb', line 23

def stdlib
  @stdlib
end

#tapped_fromString? (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:



41
42
43
# File 'tab/tab.rb', line 41

def tapped_from
  @tapped_from
end

#unused_optionsOptions

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:



341
342
343
# File 'tab/tab.rb', line 341

def unused_options
  Options.create(@unused_options)
end

#used_optionsOptions

This method is part of an internal API. This method may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

The options used to install the formula.

Returns:



336
337
338
# File 'tab/tab.rb', line 336

def used_options
  Options.create(@used_options)
end

Class Method Details

.create(formula_or_cask, compiler = DevelopmentTools.default_compiler, stdlib = nil) ⇒ T.attached_class

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.

Instantiates a Tab for a new installation of a formula.

Parameters:

Returns:

  • (T.attached_class)


111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'tab/tab.rb', line 111

def self.create(formula_or_cask, compiler = DevelopmentTools.default_compiler, stdlib = nil)
  formula = T.cast(formula_or_cask, Formula)

  tab = super(formula)
  build = formula.build
  runtime_deps = formula.runtime_dependencies(undeclared: false)

  tab.used_options = build.used_options.as_flags
  tab.unused_options = build.unused_options.as_flags
  tab.tabfile = formula.prefix/FILENAME
  tab.built_as_bottle = build.bottle?
  tab.built_prefix = HOMEBREW_PREFIX.to_s if build.bottle? && !Homebrew.default_prefix?
  tab.poured_from_bottle = false
  tab.source_modified_time = formula.source_modified_time.to_i
  tab.compiler = compiler
  tab.stdlib = stdlib
  tab.aliases = formula.aliases
  tab.runtime_dependencies = Tab.runtime_deps_hash(formula, runtime_deps)
  active_spec = formula.active_spec

  tab.source["spec"] = formula.active_spec_sym.to_s
  tab.source["path"] = formula.specified_path.to_s
  if (downloader = active_spec.downloader).cached_location.exist? &&
     (scm_revision = downloader.source_revision).present?
    tab.source["scm_revision"] = scm_revision
  end
  tab.source["versions"] = {
    "stable"                => formula.stable&.version&.to_s,
    "head"                  => formula.head&.version&.to_s,
    "version_scheme"        => formula.version_scheme,
    "compatibility_version" => formula.compatibility_version,
  }

  tab
end

.emptyT.attached_class

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:

  • (T.attached_class)


263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# File 'tab/tab.rb', line 263

def self.empty
  tab = super

  tab.used_options = []
  tab.unused_options = []
  tab.built_as_bottle = false
  tab.poured_from_bottle = false
  tab.source_modified_time = 0
  tab.stdlib = nil
  tab.compiler = DevelopmentTools.default_compiler
  tab.aliases = []
  tab.source["spec"] = "stable"
  tab.source["versions"] = empty_source_versions

  tab
end

.for_formula(formula) ⇒ T.attached_class

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 a Tab for an already installed formula, or a fake one if the formula is not installed.

Parameters:

Returns:

  • (T.attached_class)


219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# File 'tab/tab.rb', line 219

def self.for_formula(formula)
  paths = []

  if formula.opt_prefix.symlink? && formula.opt_prefix.directory?
    paths << Utils::Path.resolved_path(formula.opt_prefix)
  end

  if formula.linked_keg.symlink? && formula.linked_keg.directory?
    paths << Utils::Path.resolved_path(formula.linked_keg)
  end

  if (dirs = formula.installed_prefixes).length == 1
    paths << dirs.first
  end

  paths << formula.latest_installed_prefix

  path = paths.map { |pathname| pathname/FILENAME }.find(&:file?)

  if path
    tab = from_file(path)
    used_options = remap_deprecated_options(formula.deprecated_options, tab.used_options)
    tab.used_options = used_options.as_flags
  else
    # Formula is not installed. Return a fake tab.
    tab = empty
    tab.unused_options = formula.options.as_flags
    tab.source = {
      "path"         => formula.specified_path.to_s,
      "tap"          => formula.tap&.name,
      "tap_git_head" => formula.tap_git_head,
      "spec"         => formula.active_spec_sym.to_s,
      "versions"     => {
        "stable"         => formula.stable&.version&.to_s,
        "head"           => formula.head&.version&.to_s,
        "version_scheme" => formula.version_scheme,
      },
    }
  end

  tab
end

.for_keg(keg) ⇒ T.attached_class

This method is part of an internal API. This method may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Get the Tab for the given Keg, or a fake one if the formula is not installed.

Parameters:

Returns:

  • (T.attached_class)


179
180
181
182
183
184
185
186
187
188
189
190
# File 'tab/tab.rb', line 179

def self.for_keg(keg)
  path = keg/FILENAME

  tab = if path.exist?
    from_file(path)
  else
    empty
  end

  tab.tabfile = path
  tab
end

.for_name(name) ⇒ T.attached_class

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 a Tab for the named formula's installation, or a fake one if the formula is not installed.

Parameters:

Returns:

  • (T.attached_class)


195
196
197
198
199
200
201
202
# File 'tab/tab.rb', line 195

def self.for_name(name)
  rack = HOMEBREW_CELLAR/name
  if (keg = Keg.from_rack(rack))
    for_keg(keg)
  else
    for_formula(Formulary.from_rack(rack, keg:))
  end
end

.from_file_content(content, path) ⇒ T.attached_class

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.

Like AbstractTab.from_file, but bypass the cache.

Parameters:

Returns:

  • (T.attached_class)


149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'tab/tab.rb', line 149

def self.from_file_content(content, path)
  tab = super

  tab.tap = tab.tapped_from if !tab.tapped_from.nil? && tab.tapped_from != "path or URL"
  tab.tap = "homebrew/core" if ["mxcl/master", "Homebrew/homebrew"].include?(tab.tap)

  if tab.source["spec"].nil?
    version = PkgVersion.parse(File.basename(File.dirname(path)))
    tab.source["spec"] = if version.head?
      "head"
    else
      "stable"
    end
  end

  tab.source["versions"] ||= empty_source_versions

  # Tabs created with Homebrew 1.5.13 through 4.0.17 inclusive created empty string versions in some cases.
  ["stable", "head"].each do |spec|
    tab.source["versions"][spec] = tab.source["versions"][spec].presence
  end

  tab
end

.remap_deprecated_options(deprecated_options, options) ⇒ Options

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:



205
206
207
208
209
210
211
212
213
214
# File 'tab/tab.rb', line 205

def self.remap_deprecated_options(deprecated_options, options)
  deprecated_options.each do |deprecated_option|
    option = options.find { |o| o.name == deprecated_option.old }
    next unless option

    options -= [option]
    options << Option.new(deprecated_option.current, option.description)
  end
  options
end

.runtime_deps_hash(formula, deps) ⇒ Array<Hash{String => T.untyped}>

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:



292
293
294
295
296
# File 'tab/tab.rb', line 292

def self.runtime_deps_hash(formula, deps)
  deps.map do |dep|
    formula_to_dep_hash(dep.to_formula, formula.deps.map(&:name))
  end
end

Instance Method Details

#any_args_or_options?Boolean

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:

  • (Boolean)


299
300
301
# File 'tab/tab.rb', line 299

def any_args_or_options?
  !used_options.empty? || !unused_options.empty?
end

#bottle?Boolean

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:

  • (Boolean)


370
371
372
# File 'tab/tab.rb', line 370

def bottle?
  !!built_as_bottle
end

#built_bottle?Boolean

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:

  • (Boolean)


365
366
367
# File 'tab/tab.rb', line 365

def built_bottle?
  !!built_as_bottle && !poured_from_bottle
end

#cxxstdlibCxxStdlib

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:



358
359
360
361
362
# File 'tab/tab.rb', line 358

def cxxstdlib
  # Older tabs won't have these values, so provide sensible defaults
  lib = stdlib&.to_sym
  CxxStdlib.create(lib, compiler.to_sym)
end

#head?Boolean

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:

  • (Boolean)


323
324
325
# File 'tab/tab.rb', line 323

def head?
  spec == :head
end

#head_versionVersion?

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:



390
391
392
# File 'tab/tab.rb', line 390

def head_version
  versions["head"]&.then { Version.new(it) }
end

#include?(opt) ⇒ Boolean

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:

  • (Boolean)


318
319
320
# File 'tab/tab.rb', line 318

def include?(opt)
  used_options.include? opt
end

#runtime_dependenciesRuntimeDependencies

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:



351
352
353
354
355
# File 'tab/tab.rb', line 351

def runtime_dependencies
  # Homebrew versions prior to 1.1.6 generated incorrect runtime dependency
  # lists.
  @runtime_dependencies if parsed_homebrew_version >= "1.1.6"
end

#specSymbol

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:



375
376
377
# File 'tab/tab.rb', line 375

def spec
  source["spec"].to_sym
end

#stable?Boolean

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:

  • (Boolean)


328
329
330
# File 'tab/tab.rb', line 328

def stable?
  spec == :stable
end

#stable_versionVersion?

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:



385
386
387
# File 'tab/tab.rb', line 385

def stable_version
  versions["stable"]&.then { Version.new(it) }
end

#to_bottle_hashHash{String => T.untyped}

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.

A subset of to_json that we care about for bottles.

Returns:



445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
# File 'tab/tab.rb', line 445

def to_bottle_hash
  attributes = {
    "homebrew_version"        => homebrew_version,
    "built_prefix"            => built_prefix,
    "padded_prefix"           => padded_prefix,
    "changed_files"           => changed_files&.map(&:to_s),
    "linkage_files"           => linkage_files&.map(&:to_s),
    "binary_relocation_files" => binary_relocation_files&.map(&:to_s),
    "source_modified_time"    => source_modified_time.to_i,
    "stdlib"                  => stdlib&.to_s,
    "compiler"                => compiler.to_s,
    "runtime_dependencies"    => runtime_dependencies,
    "source"                  => source.slice("scm_revision").compact.presence,
    "arch"                    => arch,
    "built_on"                => built_on,
  }
  attributes.delete("stdlib") if attributes["stdlib"].blank?
  attributes.delete("built_prefix") if attributes["built_prefix"].nil?
  attributes.delete("padded_prefix") if attributes["padded_prefix"].nil?
  attributes.delete("linkage_files") if attributes["linkage_files"].nil?
  attributes.delete("binary_relocation_files") if attributes["binary_relocation_files"].nil?
  attributes.delete("source") if attributes["source"].blank?
  attributes
end

#to_json(options = nil) ⇒ 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.

Parameters:

  • options (Hash{String => T.untyped}, nil) (defaults to: nil)

Returns:



405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
# File 'tab/tab.rb', line 405

def to_json(options = nil)
  attributes = {
    "homebrew_version"         => homebrew_version,
    "used_options"             => used_options.as_flags,
    "unused_options"           => unused_options.as_flags,
    "built_as_bottle"          => built_as_bottle,
    "built_prefix"             => built_prefix,
    "padded_prefix"            => padded_prefix,
    "poured_from_bottle"       => poured_from_bottle,
    "loaded_from_api"          => loaded_from_api,
    "loaded_from_internal_api" => loaded_from_internal_api,
    "installed_on_request"     => installed_on_request,
    "changed_files"            => changed_files&.map(&:to_s),
    "linkage_files"            => linkage_files&.map(&:to_s),
    "binary_relocation_files"  => binary_relocation_files&.map(&:to_s),
    "relocated_build_prefix"   => relocated_build_prefix,
    "relocated_files"          => relocated_files&.map(&:to_s),
    "time"                     => time,
    "source_modified_time"     => source_modified_time.to_i,
    "stdlib"                   => stdlib&.to_s,
    "compiler"                 => compiler.to_s,
    "aliases"                  => aliases,
    "runtime_dependencies"     => runtime_dependencies,
    "source"                   => source,
    "arch"                     => arch,
    "built_on"                 => built_on,
  }
  attributes.delete("stdlib") if attributes["stdlib"].blank?
  attributes.delete("built_prefix") if attributes["built_prefix"].nil?
  attributes.delete("padded_prefix") if attributes["padded_prefix"].nil?
  attributes.delete("linkage_files") if attributes["linkage_files"].nil?
  attributes.delete("binary_relocation_files") if attributes["binary_relocation_files"].nil?
  attributes.delete("relocated_build_prefix") if attributes["relocated_build_prefix"].nil?
  attributes.delete("relocated_files") if attributes["relocated_files"].nil?

  JSON.pretty_generate(attributes, options)
end

#version_schemeInteger

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:



395
396
397
# File 'tab/tab.rb', line 395

def version_scheme
  versions["version_scheme"] || 0
end

#versionsHash{String => T.untyped}

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:



380
381
382
# File 'tab/tab.rb', line 380

def versions
  source["versions"]
end

#with?(val) ⇒ Boolean

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:

  • (Boolean)


304
305
306
307
308
309
310
# File 'tab/tab.rb', line 304

def with?(val)
  option_names = val.is_a?(String) ? [val] : val.option_names

  option_names.any? do |name|
    include?("with-#{name}") || unused_options.include?("without-#{name}")
  end
end

#without?(val) ⇒ Boolean

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:

  • (Boolean)


313
314
315
# File 'tab/tab.rb', line 313

def without?(val)
  !with?(val)
end

#writevoid

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.

This method returns an undefined value.



471
472
473
474
475
476
477
# File 'tab/tab.rb', line 471

def write
  # If this is a new installation, the cache of installed formulae
  # will no longer be valid.
  Formula.clear_cache unless tabfile&.exist?

  super
end