[bundler/bundler] Remve another unneeded `to_s`

`FileUtils.rm` supports a `Pathname` argument.

https://github.com/bundler/bundler/commit/7d982a5be9
This commit is contained in:
David Rodríguez 2019-08-15 18:41:55 +02:00 коммит произвёл Hiroshi SHIBATA
Родитель 9925e1a10f
Коммит adfca752d6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -232,7 +232,7 @@ RSpec.describe "The library itself" do
spec.bindir = "libexec"
File.open(root.join("bundler.gemspec").to_s, "w") {|f| f.write spec.to_ruby }
gem_command! :build, root.join("bundler.gemspec")
FileUtils.rm(root.join("bundler.gemspec").to_s)
FileUtils.rm(root.join("bundler.gemspec"))
else
gem_command! :build, gemspec
end