2024-07-15 23:22:31 -04:00
|
|
|
# typed: strict
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-04 19:45:21 +01:00
|
|
|
OFFICIAL_CASK_TAPS = %w[
|
|
|
|
cask
|
|
|
|
].freeze
|
|
|
|
|
2024-07-15 23:22:31 -04:00
|
|
|
OFFICIAL_CMD_TAPS = T.let({
|
2021-04-23 13:43:55 +01:00
|
|
|
"homebrew/command-not-found" => ["command-not-found-init", "which-formula", "which-update"],
|
|
|
|
"homebrew/test-bot" => ["test-bot"],
|
2024-07-15 23:22:31 -04:00
|
|
|
}.freeze, T::Hash[String, T::Array[String]])
|
2017-04-22 16:53:48 +01:00
|
|
|
|
|
|
|
DEPRECATED_OFFICIAL_TAPS = %w[
|
2025-02-07 14:31:50 +00:00
|
|
|
aliases
|
2017-10-05 20:33:22 -07:00
|
|
|
apache
|
2017-04-22 16:53:48 +01:00
|
|
|
binary
|
2025-03-18 17:38:37 +00:00
|
|
|
bundle
|
2023-06-08 08:12:59 -04:00
|
|
|
cask-drivers
|
2020-08-13 04:24:37 +02:00
|
|
|
cask-eid
|
2024-05-15 21:39:13 -07:00
|
|
|
cask-fonts
|
2024-05-02 16:59:33 -04:00
|
|
|
cask-versions
|
2017-04-22 16:53:48 +01:00
|
|
|
completions
|
|
|
|
devel-only
|
|
|
|
dupes
|
|
|
|
emacs
|
|
|
|
fuse
|
|
|
|
games
|
|
|
|
gui
|
|
|
|
head-only
|
2025-04-28 08:36:04 +01:00
|
|
|
linux-fonts
|
2020-08-02 00:59:36 +05:30
|
|
|
livecheck
|
2017-11-17 19:47:38 +00:00
|
|
|
nginx
|
2018-03-31 12:04:35 +01:00
|
|
|
php
|
2017-04-22 16:53:48 +01:00
|
|
|
python
|
2018-01-01 09:33:43 +00:00
|
|
|
science
|
2025-02-26 13:26:37 +01:00
|
|
|
services
|
2017-04-22 16:53:48 +01:00
|
|
|
tex
|
|
|
|
versions
|
|
|
|
x11
|
|
|
|
].freeze
|