This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #5718 - bundler:seg-reduce-gemfile-eval-count, r=indirect
Eval Gemfiles one fewer time when running `bundle install` This is just a straight port of #4952 to master from `2-0-dev`. Unfortunately, the Gemfile is still eval'ed twice when plugins are enabled.
- Loading branch information
Showing
6 changed files
with
65 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ def remote! | |
end | ||
|
||
def cached! | ||
@specs = nil | ||
@allow_cached = true | ||
end | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.describe "bundle install with a lockfile present" do | ||
let(:gf) { <<-G } | ||
source "file://#{gem_repo1}" | ||
gem "rack", "1.0.0" | ||
G | ||
|
||
subject do | ||
install_gemfile(gf) | ||
end | ||
|
||
context "gemfile evaluation" do | ||
let(:gf) { super() + "\n\n File.open('evals', 'a') {|f| f << %(1\n) } unless ENV['BUNDLER_SPEC_NO_APPEND']" } | ||
|
||
context "with plugins disabled" do | ||
before do | ||
bundle! "config plugins false" | ||
subject | ||
end | ||
|
||
it "does not evaluate the gemfile twice" do | ||
bundle! :install | ||
|
||
with_env_vars("BUNDLER_SPEC_NO_APPEND" => "1") { expect(the_bundle).to include_gem "rack 1.0.0" } | ||
|
||
# The first eval is from the initial install, we're testing that the | ||
# second install doesn't double-eval | ||
expect(bundled_app("evals").read.lines.to_a.size).to eq(2) | ||
end | ||
|
||
context "when the gem is not installed" do | ||
before { FileUtils.rm_rf ".bundle" } | ||
|
||
it "does not evaluate the gemfile twice" do | ||
bundle! :install | ||
|
||
with_env_vars("BUNDLER_SPEC_NO_APPEND" => "1") { expect(the_bundle).to include_gem "rack 1.0.0" } | ||
|
||
# The first eval is from the initial install, we're testing that the | ||
# second install doesn't double-eval | ||
expect(bundled_app("evals").read.lines.to_a.size).to eq(2) | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters