summaryrefslogtreecommitdiff
path: root/spec/bundler/cache/gems_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-05-06 18:06:21 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-03 09:29:55 +0900
commitc3ddd47ce7b546530e2241b0ea6a96817977886a (patch)
tree46515c479773d7add25773b536009e096ee9fa78 /spec/bundler/cache/gems_spec.rb
parentd8d5e16305ee071f7cf16980788cabcc44799c2e (diff)
[bundler/bundler] Normalize file:// handling in specs
https://github.com/bundler/bundler/commit/5946d62ad0
Diffstat (limited to 'spec/bundler/cache/gems_spec.rb')
-rw-r--r--spec/bundler/cache/gems_spec.rb24
1 files changed, 12 insertions, 12 deletions
diff --git a/spec/bundler/cache/gems_spec.rb b/spec/bundler/cache/gems_spec.rb
index 4fc43a50a0..89d6d41570 100644
--- a/spec/bundler/cache/gems_spec.rb
+++ b/spec/bundler/cache/gems_spec.rb
@@ -19,7 +19,7 @@ RSpec.describe "bundle cache" do
build_gem "omg", :path => bundled_app("vendor/cache")
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "omg"
G
@@ -104,7 +104,7 @@ RSpec.describe "bundle cache" do
it "caches remote and builtin gems" do
install_gemfile <<-G
- source "file://#{gem_repo2}"
+ source "#{file_uri_for(gem_repo2)}"
gem 'builtin_gem', '1.0.2'
gem 'rack', '1.0.0'
G
@@ -120,7 +120,7 @@ RSpec.describe "bundle cache" do
end
install_gemfile <<-G
- source "file://#{gem_repo2}"
+ source "#{file_uri_for(gem_repo2)}"
gem 'builtin_gem_2', '1.0.2'
G
@@ -147,7 +147,7 @@ RSpec.describe "bundle cache" do
system_gems "rack-1.0.0"
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
git "#{lib_path("foo-1.0")}" do
gem 'foo'
end
@@ -177,7 +177,7 @@ RSpec.describe "bundle cache" do
before :each do
build_repo2
install_gemfile <<-G
- source "file://#{gem_repo2}"
+ source "#{file_uri_for(gem_repo2)}"
gem "rack"
gem "actionpack"
G
@@ -203,7 +203,7 @@ RSpec.describe "bundle cache" do
it "adds new gems and dependencies" do
install_gemfile <<-G
- source "file://#{gem_repo2}"
+ source "#{file_uri_for(gem_repo2)}"
gem "rails"
G
expect(cached_gem("rails-2.3.2")).to exist
@@ -212,7 +212,7 @@ RSpec.describe "bundle cache" do
it "removes .gems for removed gems and dependencies" do
install_gemfile <<-G
- source "file://#{gem_repo2}"
+ source "#{file_uri_for(gem_repo2)}"
gem "rack"
G
expect(cached_gem("rack-1.0.0")).to exist
@@ -224,7 +224,7 @@ RSpec.describe "bundle cache" do
build_git "rack"
install_gemfile <<-G
- source "file://#{gem_repo2}"
+ source "#{file_uri_for(gem_repo2)}"
gem "rack", :git => "#{lib_path("rack-1.0")}"
gem "actionpack"
G
@@ -236,7 +236,7 @@ RSpec.describe "bundle cache" do
it "doesn't remove gems that are for another platform" do
simulate_platform "java" do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "platform_specific"
G
@@ -246,7 +246,7 @@ RSpec.describe "bundle cache" do
simulate_new_machine
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "platform_specific"
G
@@ -273,7 +273,7 @@ RSpec.describe "bundle cache" do
it "does not say that it is removing gems when it isn't actually doing so" do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "rack"
G
bundle "cache"
@@ -283,7 +283,7 @@ RSpec.describe "bundle cache" do
it "does not warn about all if it doesn't have any git/path dependency" do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "rack"
G
bundle "cache"