Merge pull request #11000 from thomassth/patch-1

Remove Audacity block
This commit is contained in:
Mike McQuaid 2021-04-02 12:10:52 +01:00 committed by GitHub
commit f749998476
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -13,8 +13,6 @@ module Cask
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

View File

@ -17,7 +17,6 @@ describe Cask::Denylist, :cask do
it { is_expected.to disallow("adobe-indesign") }
it { is_expected.to disallow("adobe-photoshop") }
it { is_expected.to disallow("adobe-premiere") }
it { is_expected.to disallow("audacity") }
it { is_expected.to disallow("pharo") }
it { is_expected.not_to disallow("allowed-cask") }
end