 e5fe57c1fe
			
		
	
	
		e5fe57c1fe
		
			
		
	
	
	
	
		
			
			Co-authored-by: Sam Ford <1584702+samford@users.noreply.github.com> Co-authored-by: Thierry Moisan <thierry.moisan@gmail.com> Co-authored-by: Dawid Dziurla <dawidd0811@gmail.com> Co-authored-by: Maxim Belkin <maxim.belkin@gmail.com> Co-authored-by: Issy Long <me@issyl0.co.uk> Co-authored-by: Mike McQuaid <mike@mikemcquaid.com> Co-authored-by: Seeker <meaningseeking@protonmail.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			444 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			444 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| 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
 | |
|   cask-eid
 | |
|   completions
 | |
|   devel-only
 | |
|   dupes
 | |
|   emacs
 | |
|   fuse
 | |
|   games
 | |
|   gui
 | |
|   head-only
 | |
|   livecheck
 | |
|   nginx
 | |
|   php
 | |
|   python
 | |
|   science
 | |
|   tex
 | |
|   versions
 | |
|   x11
 | |
| ].freeze
 |