[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 committed by git
parent 6358397490
commit 290089c1a2

View File

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