Make tool/vcs.rb compliant to BASERUBY

People seem to consider BASERUBY is either 1.8 or 1.9 now. Since this
file may be executed by BASERUBY from file2lastrev.rb, I think we should
not rely on Ruby 2.0 in this file for now.
This commit is contained in:
Takashi Kokubun 2019-05-29 08:22:02 +09:00
Родитель e1f62d7f0e
Коммит 6b5e712361
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6FFC433B12EE23DD
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -124,7 +124,8 @@ class VCS
@@dirs << [dir, self, pred]
end
def self.detect(path, uplevel_limit: 0)
def self.detect(path, options = {})
uplevel_limit = options.fetch(:uplevel_limit, 0)
curr = path
begin
@@dirs.each do |dir, klass, pred|