Use load_gemspec instead of Gem::Specification.load.

We need to purge `git ls-files` from gemspec in default gems.
This commit is contained in:
Hiroshi SHIBATA 2024-03-25 17:12:31 +09:00
Родитель 6c65f11c08
Коммит 152192c96f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -631,7 +631,7 @@ module RbInstall
end
def ext_features
loaded_gemspec = Gem::Specification.load("#{root}/#{gemspec}")
loaded_gemspec = load_gemspec("#{root}/#{gemspec}")
extension = loaded_gemspec.extensions.first
return [] unless extension