summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2018-11-02 06:44:54 +0900
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2018-11-02 06:44:54 +0900
commit8ff21c96c374281caf03035d8765df9f779e1294 (patch)
treeaabe03c3446a2f0e492a66057ae09dafc4b42f34
parent886de38f9ea049dd3ad1f946bb66023694488ff0 (diff)
downloadbundler-8ff21c96c374281caf03035d8765df9f779e1294.tar.gz
Partly reverted 09bfdfa31ad5ae34d29745344493f6a63d355804.
-rw-r--r--spec/install/gemfile/platform_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/install/gemfile/platform_spec.rb b/spec/install/gemfile/platform_spec.rb
index c2d4321004..6c226eb29f 100644
--- a/spec/install/gemfile/platform_spec.rb
+++ b/spec/install/gemfile/platform_spec.rb
@@ -96,7 +96,7 @@ RSpec.describe "bundle install across platforms" do
simulate_platform java
install_gemfile! <<-G
- source "file://#{gem_repo4}"
+ source "file://localhost/#{gem_repo4}"
gem "empyrean", "0.1.0"
gem "pry"
@@ -104,7 +104,7 @@ RSpec.describe "bundle install across platforms" do
expect(the_bundle.lockfile).to read_as strip_whitespace(<<-L)
GEM
- remote: file://#{gem_repo4}/
+ remote: file://localhost/#{gem_repo4}/
specs:
coderay (1.1.2)
empyrean (0.1.0)
@@ -132,7 +132,7 @@ RSpec.describe "bundle install across platforms" do
good_lockfile = strip_whitespace(<<-L)
GEM
- remote: file://#{gem_repo4}/
+ remote: file://localhost/#{gem_repo4}/
specs:
coderay (1.1.2)
empyrean (0.1.0)
@@ -164,7 +164,7 @@ RSpec.describe "bundle install across platforms" do
bad_lockfile = strip_whitespace <<-L
GEM
- remote: file://#{gem_repo4}/
+ remote: file://localhost/#{gem_repo4}/
specs:
coderay (1.1.2)
empyrean (0.1.0)