ignore comments
This commit is contained in:
parent
685d28e6e4
commit
8ea7166feb
|
@ -185,11 +185,16 @@ module Rails
|
||||||
# If they're on Windows, they probably don't have grep.
|
# If they're on Windows, they probably don't have grep.
|
||||||
@probably_has_grep ||= (Config::CONFIG['host_os'].downcase =~ /mswin|windows|mingw/).nil?
|
@probably_has_grep ||= (Config::CONFIG['host_os'].downcase =~ /mswin|windows|mingw/).nil?
|
||||||
|
|
||||||
if @probably_has_grep
|
lines = if @probably_has_grep
|
||||||
find_with_grep(text, base_path + where)
|
find_with_grep(text, base_path + where)
|
||||||
else
|
else
|
||||||
find_with_rak(text, base_path + where)
|
find_with_rak(text, base_path + where)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# ignore comments
|
||||||
|
lines.gsub! /^\s*#.+$/m, ""
|
||||||
|
|
||||||
|
lines
|
||||||
end
|
end
|
||||||
|
|
||||||
# Sets a base path for finding files; mostly for testing
|
# Sets a base path for finding files; mostly for testing
|
||||||
|
|
Loading…
Reference in New Issue