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

ruby-changes:55775

From: Nobuyoshi <ko1@a...>
Date: Wed, 22 May 2019 22:28:48 +0900 (JST)
Subject: [ruby-changes:55775] Nobuyoshi Nakada: 658f17b8ec (trunk): Fixed the method to delegate

https://git.ruby-lang.org/ruby.git/commit/?id=658f17b8ec

From 658f17b8ec56e3f8bbd70afdb92c6e7aa156e5be Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Wed, 22 May 2019 21:14:12 +0900
Subject: Fixed the method to delegate

* tool/vcs.rb (VCS::GITSVN.revision_name): should delegate to the
  same method of SVN, not an undefined method.

diff --git a/tool/vcs.rb b/tool/vcs.rb
index be7b672..3f0a331 100644
--- a/tool/vcs.rb
+++ b/tool/vcs.rb
@@ -529,7 +529,7 @@ class VCS https://github.com/ruby/ruby/blob/trunk/tool/vcs.rb#L529
 
   class GITSVN < GIT
     def self.revision_name(rev)
-      SVN.short_revision(rev)
+      SVN.revision_name(rev)
     end
 
     def format_changelog(r, path)
-- 
cgit v0.10.2


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

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