Merge pull request #6708 from amatsuda/ignore_git_ignored_files_in_rake_test_uncommitted

ignore .gitignore'd files in rake test:uncomitted
This commit is contained in:
José Valim 2012-06-11 12:37:05 -07:00
commit c53ff3317d

@ -87,7 +87,7 @@ namespace :test do
if File.directory?(".svn")
changed_since_checkin = silence_stderr { `svn status` }.split.map { |path| path.chomp[7 .. -1] }
elsif File.directory?(".git")
changed_since_checkin = silence_stderr { `git ls-files --modified --others` }.split.map { |path| path.chomp }
changed_since_checkin = silence_stderr { `git ls-files --modified --others --exclude-standard` }.split.map { |path| path.chomp }
else
abort "Not a Subversion or Git checkout."
end