diff options
| author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2025-03-17 15:27:40 +0100 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-03-24 13:25:07 +0900 |
| commit | 60d00da083a8006fbd6e903d7c844ac632b59ec7 (patch) | |
| tree | e78492b3aef4228e1851f8a1dc9c8450973c5dfb | |
| parent | 131559f6715cc2c0f7d681a6fd71a979e91500dd (diff) | |
[rubygems/rubygems] Fix redundant `path` configurations
The deployment setting already does this implicitly.
https://github.com/rubygems/rubygems/commit/402b11fa39
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12968
| -rw-r--r-- | spec/bundler/install/gems/compact_index_spec.rb | 1 | ||||
| -rw-r--r-- | spec/bundler/install/gems/dependency_api_spec.rb | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/spec/bundler/install/gems/compact_index_spec.rb b/spec/bundler/install/gems/compact_index_spec.rb index e7322ab5ad..6f34cbbe85 100644 --- a/spec/bundler/install/gems/compact_index_spec.rb +++ b/spec/bundler/install/gems/compact_index_spec.rb @@ -96,7 +96,6 @@ RSpec.describe "compact index api" do bundle :install, artifice: "compact_index" bundle "config set --local deployment true" - bundle "config set --local path vendor/bundle" bundle :install, artifice: "compact_index" expect(out).to include("Fetching gem metadata from #{source_uri}") expect(the_bundle).to include_gems "myrack 1.0.0" diff --git a/spec/bundler/install/gems/dependency_api_spec.rb b/spec/bundler/install/gems/dependency_api_spec.rb index 4e06e3e711..283f1208f2 100644 --- a/spec/bundler/install/gems/dependency_api_spec.rb +++ b/spec/bundler/install/gems/dependency_api_spec.rb @@ -61,7 +61,6 @@ RSpec.describe "gemcutter's dependency API" do bundle :install, artifice: "endpoint" bundle "config set --local deployment true" - bundle "config set --local path vendor/bundle" bundle :install, artifice: "endpoint" expect(out).to include("Fetching gem metadata from #{source_uri}") expect(the_bundle).to include_gems "myrack 1.0.0" |
