blob: 7eace302a5995b554e691df37d84fb756971a911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
OFFICIAL_TAPS = %w[
php
].freeze
OFFICIAL_CASK_TAPS = %w[
cask
versions
].freeze
OFFICIAL_CMD_TAPS = {
"homebrew/bundle" => ["bundle"],
"homebrew/test-bot" => ["test-bot"],
"homebrew/services" => ["services"],
}.freeze
DEPRECATED_OFFICIAL_TAPS = %w[
apache
binary
completions
devel-only
dupes
emacs
fuse
games
gui
head-only
nginx
python
science
tex
versions
x11
].freeze
|