[rubygems/rubygems] Remove some `file_uri_for` calls

https://github.com/rubygems/rubygems/commit/3570ba20ed
This commit is contained in:
David Rodríguez 2024-07-31 16:02:42 +02:00 коммит произвёл git
Родитель 6358397490
Коммит 290089c1a2
1 изменённых файлов: 4 добавлений и 4 удалений

8
spec/bundler/cache/git_spec.rb поставляемый
Просмотреть файл

@ -158,7 +158,7 @@ RSpec.describe "bundle cache with git" do
build_git "foo"
gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
source "https://gem.repo1"
gem "foo", :git => '#{lib_path("foo-1.0")}'
G
bundle "config set path vendor/bundle"
@ -176,7 +176,7 @@ RSpec.describe "bundle cache with git" do
build_git "foo"
gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
source "https://gem.repo1"
gem "foo", :git => '#{lib_path("foo-1.0")}'
G
bundle "config set cache_all true"
@ -195,7 +195,7 @@ RSpec.describe "bundle cache with git" do
build_git "foo"
gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
source "https://gem.repo1"
gem "foo", :git => '#{lib_path("foo-1.0")}'
G
bundle "config set cache_all true"
@ -331,7 +331,7 @@ RSpec.describe "bundle cache with git" do
bundle "config set cache_all all"
install_gemfile <<-G
source "#{file_uri_for(gem_repo1)}"
source "https://gem.repo1"
gem "puma", :git => "#{lib_path("puma-1.0")}"
G