aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-15 12:14:45 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-15 12:14:45 +0000
commit83724a77dd85d7b5428742e40c1fa74804765610 (patch)
treed772216e0a2513c2409eb67f1a6d9e8362f38428
parentd9aab5725241759ccf4a01621d20c6ff1ecb1c9c (diff)
downloadruby-83724a77dd85d7b5428742e40c1fa74804765610.tar.gz
* tool/file2lastrev.rb: this should run with ruby 1.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rwxr-xr-xtool/file2lastrev.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 06cf19059c..681bf2165a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Apr 15 21:13:29 2010 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * tool/file2lastrev.rb: this should run with ruby 1.8.
+
Thu Apr 15 20:41:10 2010 Tanaka Akira <akr@fsij.org>
* tool/file2lastrev.rb: make -q effective for files not version
diff --git a/tool/file2lastrev.rb b/tool/file2lastrev.rb
index 45b2f037ca..27fa31c3af 100755
--- a/tool/file2lastrev.rb
+++ b/tool/file2lastrev.rb
@@ -60,7 +60,7 @@ class VCS
register(".svn")
def self.get_revisions(path)
- info_xml = IO.popen(["svn", "info", "--xml", path.to_s, :err=>[:child, :out]]) {|f| f.read }
+ info_xml = IO.popen(["svn", "info", "--xml", path.to_s, {:err=>[:child, :out]}]) {|f| f.read }
_, last, _, changed, _ = info_xml.split(/revision="(\d+)"/)
[last, changed]
end