brew/Library/Homebrew/cask/denylist.rb
2020-08-26 03:13:59 +02:00

20 lines
542 B
Ruby

# frozen_string_literal: true
module Cask
# List of casks which are not allowed in official taps.
#
# @api private
module Denylist
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
end
end