Module: Cask::Denylist Private
- Defined in:
- cask/denylist.rb
Overview
This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.
List of casks which are not allowed in official taps.
Class Method Summary collapse
- .reason(name) ⇒ String? private
Class Method Details
.reason(name) ⇒ String?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
8 9 10 11 12 13 14 15 |
# File 'cask/denylist.rb', line 8 def self.reason(name) case name when /^adobe-(after|illustrator|indesign|photoshop|premiere)/ "Adobe casks were removed because they are too difficult to maintain." when /^pharo$/ "Pharo developers maintain their own tap." end end |