Class: TapConfig Private

Inherits:
Object show all
Defined in:
tap.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.

Permanent configuration per Tap using git-config(1).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tap) ⇒ 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:



1429
1430
1431
# File 'tap.rb', line 1429

def initialize(tap)
  @tap = tap
end

Instance Attribute Details

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



1426
1427
1428
# File 'tap.rb', line 1426

def tap
  @tap
end

Instance Method Details

#[](key) ⇒ 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, nil)


1434
1435
1436
1437
1438
1439
1440
1441
1442
# File 'tap.rb', line 1434

def [](key)
  return unless tap.git?
  return unless Utils::Git.available?

  case Homebrew::Settings.read(key, repo: tap.path)
  when "true" then true
  when "false" then false
  end
end

#[]=(key, value) ⇒ 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.

This method returns an undefined value.

Parameters:

  • key (Symbol)
  • value (Boolean)


1445
1446
1447
1448
1449
1450
# File 'tap.rb', line 1445

def []=(key, value)
  return unless tap.git?
  return unless Utils::Git.available?

  Homebrew::Settings.write key, value.to_s, repo: tap.path
end

#delete(key) ⇒ 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.

This method returns an undefined value.

Parameters:



1453
1454
1455
1456
1457
1458
# File 'tap.rb', line 1453

def delete(key)
  return unless tap.git?
  return unless Utils::Git.available?

  Homebrew::Settings.delete key, repo: tap.path
end