 a251109960
			
		
	
	
		a251109960
		
			
		
	
	
	
	
		
			
			DomT4 and the Homebrew maintainers have agreed that homebrew/autoupdate is a better fit for not being an official tap and has been moved back to his user account. Documentation and code has been adjusted accordingly and it was added to the list of interesting taps.
		
			
				
	
	
		
			40 lines
		
	
	
		
			669 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			669 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: true
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| OFFICIAL_CASK_TAPS = %w[
 | |
|   cask
 | |
|   cask-fonts
 | |
|   cask-versions
 | |
| ].freeze
 | |
| 
 | |
| OFFICIAL_CMD_TAPS = {
 | |
|   "homebrew/aliases"           => ["alias", "unalias"],
 | |
|   "homebrew/bundle"            => ["bundle"],
 | |
|   "homebrew/command-not-found" => ["command-not-found-init", "which-formula", "which-update"],
 | |
|   "homebrew/test-bot"          => ["test-bot"],
 | |
|   "homebrew/services"          => ["services"],
 | |
| }.freeze
 | |
| 
 | |
| DEPRECATED_OFFICIAL_TAPS = %w[
 | |
|   apache
 | |
|   binary
 | |
|   cask-drivers
 | |
|   cask-eid
 | |
|   completions
 | |
|   devel-only
 | |
|   dupes
 | |
|   emacs
 | |
|   fuse
 | |
|   games
 | |
|   gui
 | |
|   head-only
 | |
|   livecheck
 | |
|   nginx
 | |
|   php
 | |
|   python
 | |
|   science
 | |
|   tex
 | |
|   versions
 | |
|   x11
 | |
| ].freeze
 |