[前][次][番号順一覧][スレッド一覧]

ruby-changes:16102

From: nobu <ko1@a...>
Date: Fri, 28 May 2010 20:53:26 +0900 (JST)
Subject: [ruby-changes:16102] Ruby:r28054 (trunk): * tool/change_maker.rb: change-log-mode needs tabs, and omit only

nobu	2010-05-28 20:53:21 +0900 (Fri, 28 May 2010)

  New Revision: 28054

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28054

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

  Modified files:
    trunk/tool/change_maker.rb

Index: tool/change_maker.rb
===================================================================
--- tool/change_maker.rb	(revision 28053)
+++ tool/change_maker.rb	(revision 28054)
@@ -9,7 +9,7 @@
       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 @@
 
 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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]