brew/Library/Homebrew/cask/denylist.rb

21 lines
556 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
module Cask
2020-08-24 22:52:16 +02:00
# List of casks which are not allowed in official taps.
#
# @api private
module Denylist
def self.reason(name)
case name
2020-06-02 09:49:23 +01:00
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