31 lines
		
	
	
		
			390 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			390 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| 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
 | |
|   php
 | |
|   python
 | |
|   science
 | |
|   tex
 | |
|   versions
 | |
|   x11
 | |
| ].freeze
 | 
