[rubygems/rubygems] Fix missing 'msg' parameter in Shell#no?

https://github.com/rubygems/rubygems/commit/ffe89a099a
This commit is contained in:
Matt Brictson 2024-08-22 17:12:32 -07:00 коммит произвёл git
Родитель 4ede15fb53
Коммит cfad1f95d5
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -84,7 +84,7 @@ module Bundler
@shell.yes?(msg) @shell.yes?(msg)
end end
def no? def no?(msg)
@shell.no?(msg) @shell.no?(msg)
end end

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

@ -60,7 +60,7 @@ module Bundler
raise "Cannot ask yes? with a silent shell" raise "Cannot ask yes? with a silent shell"
end end
def no? def no?(msg)
raise "Cannot ask no? with a silent shell" raise "Cannot ask no? with a silent shell"
end end