Module: Cask::Denylist Private
- Defined in:
- Library/Homebrew/cask/denylist.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
List of casks which are not allowed in official taps.
Class Method Summary collapse
- .reason(name) ⇒ Object private
Class Method Details
.reason(name) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
9 10 11 12 13 14 15 16 17 18 |
# File 'Library/Homebrew/cask/denylist.rb', line 9 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 /^audacity$/ "Audacity was removed because it is too difficult to download programmatically." when /^pharo$/ "Pharo developers maintain their own tap." end end |