2019-09-08 09:09:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Cask
|
|
|
|
module Blacklist
|
|
|
|
def self.blacklisted_reason(name)
|
|
|
|
case name
|
2020-06-02 09:49:23 +01:00
|
|
|
when /^adobe-(after|illustrator|indesign|photoshop|premiere)/
|
2019-09-08 09:09:37 -04:00
|
|
|
"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
|