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 коммит произвёл Takashi Kokubun
Родитель 1849046d1f
Коммит 716473e348
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -827,7 +827,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