aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-10 10:26:06 -0800
committerAdam Vandenberg2012-03-10 10:26:06 -0800
commit233568f6d578c294ab379aa67c66ef49a8cddd71 (patch)
treef83fb271f071c67cd156294eb205bd11db693f72 /Library
parentb57aa70069402732222e7c104a511dca67ae9594 (diff)
downloadhomebrew-233568f6d578c294ab379aa67c66ef49a8cddd71.tar.bz2
Add specialty formulase to inheritance check
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 5ed4228b4..b5e515929 100755
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -9,7 +9,7 @@ end
def audit_formula_text name, text
problems = []
- if text =~ /<(Formula|AmazonWebServicesFormula)/
+ if text =~ /<(Formula|AmazonWebServicesFormula|ScriptFileFormula|GithubGistFormula)/
problems << " * Use a space in class inheritance: class Foo < #{$1}"
end