aboutsummaryrefslogtreecommitdiffstats
path: root/tool/file2lastrev.rb
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 /tool/file2lastrev.rb
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
Diffstat (limited to 'tool/file2lastrev.rb')
-rwxr-xr-xtool/file2lastrev.rb2
1 files changed, 1 insertions, 1 deletions
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