diff options
| author | Mike McQuaid | 2017-03-18 17:02:08 +0200 | 
|---|---|---|
| committer | Mike McQuaid | 2017-03-20 18:20:31 +0200 | 
| commit | 80e95b684e7485b5c5b7f7209dd95b0bdc9e3406 (patch) | |
| tree | 421290914f160363cf4333477eee6b3efbdfc982 /Library/Homebrew/dev-cmd/audit.rb | |
| parent | 623c95b3f8660d5c77936483ec9b9a4db16aff00 (diff) | |
| download | brew-80e95b684e7485b5c5b7f7209dd95b0bdc9e3406.tar.bz2 | |
blacklist: move to missing_formula class instead.
This will allow extending this class so it can be used by more than
just blacklisting.
Diffstat (limited to 'Library/Homebrew/dev-cmd/audit.rb')
| -rw-r--r-- | Library/Homebrew/dev-cmd/audit.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 677a52447..70104e0cb 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -38,7 +38,7 @@ require "official_taps"  require "cmd/search"  require "cmd/style"  require "date" -require "blacklist" +require "missing_formula"  require "digest"  module Homebrew @@ -399,7 +399,7 @@ class FormulaAuditor      name = formula.name      full_name = formula.full_name -    if blacklisted?(name) +    if Homebrew::MissingFormula.blacklisted_reason(name)        problem "'#{name}' is blacklisted."      end  | 
