aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2010-08-07 15:23:13 -0700
committerAdam Vandenberg2010-08-07 18:08:51 -0700
commit6612a049174af69d0a4103e4db84ea385f447bbe (patch)
treee40de451f03100a2840d3e97f99cac46d424f6dc
parentbc533d59c8aa3f4ace45b627a6f350addff52fac (diff)
downloadbrew-6612a049174af69d0a4103e4db84ea385f447bbe.tar.bz2
brew audit - trailing whitespace detection
-rwxr-xr-xLibrary/Contributions/examples/brew-audit.rb17
1 files changed, 12 insertions, 5 deletions
diff --git a/Library/Contributions/examples/brew-audit.rb b/Library/Contributions/examples/brew-audit.rb
index dbc74908e..cceda040f 100755
--- a/Library/Contributions/examples/brew-audit.rb
+++ b/Library/Contributions/examples/brew-audit.rb
@@ -8,26 +8,33 @@ end
ff.each do |f|
text = ""
+ problems = []
+
File.open(f.path, "r") { |afile| text = afile.read }
- problems = []
- if /# depends_on 'cmake'/ =~ text
+ if text =~ /# depends_on 'cmake'/
problems << " * Commented cmake support found."
end
- if /\?use_mirror=/ =~ text
+ if text =~ /\?use_mirror=/
problems << " * Remove 'use_mirror' from url."
end
# 2 (or more, if in an if block) spaces before depends_on, please
- if /^\ ?depends_on/ =~ text
+ if text =~ /^\ ?depends_on/
problems << " * Check indentation of 'depends_on'."
end
- if /(#\{\w+\s*\+\s*['"][^}]+\})/ =~ text
+ if text =~ /(#\{\w+\s*\+\s*['"][^}]+\})/
problems << " * Try not to concatenate paths in string interpolation:\n #{$1}"
end
+ # Don't complain about spaces in patches
+ split_patch = (text.split("__END__")[0]).strip()
+ if split_patch =~ /[ ]+$/
+ problems << " * Trailing whitespace was found."
+ end
+
aliases = Formula.aliases
f.deps.select {|d| aliases.include? d}.each do |d|
problems << " * Dep #{d} is an alias; switch to the real name."