1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* tool/change_maker.rb: change-log-mode needs tabs, and omit only

empty line.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28054 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-05-28 11:53:21 +00:00
parent ca64478089
commit a51acf3689

View file

@ -9,7 +9,7 @@ def diff2index(cmd, *argv)
path = $1
when /^@@\s*-[,\d]+ +\+(\d+)[,\d]*\s*@@(?: +([A-Za-z_][A-Za-z_0-9 ]*[A-Za-z_0-9]))?/
line = $1.to_i
ent = "* #{path}"
ent = "\t* #{path}"
ent << " (#{$2})" if $2
lines << "#{ent}:"
end
@ -20,10 +20,11 @@ end
if File.directory?(".svn")
cmd = "svn diff --diff-cmd=diff -x-pU0"
puts diff2index(cmd, ARGV)
change = diff2index(cmd, ARGV)
elsif File.directory?(".git")
cmd = "git diff"
puts diff2index(cmd, ARGV) || diff2index(cmd, "--cached", ARGV)
change = diff2index(cmd, ARGV) || diff2index(cmd, "--cached", ARGV)
else
abort "does not seem to be under a vcs"
end
puts change if change