aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/support/path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/support/path.rb')
-rw-r--r--spec/bundler/support/path.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/bundler/support/path.rb b/spec/bundler/support/path.rb
index dc4b3bb6eb..28682a1f25 100644
--- a/spec/bundler/support/path.rb
+++ b/spec/bundler/support/path.rb
@@ -62,6 +62,14 @@ module Spec
tmp.join("gems/base")
end
+ def file_uri_for(path)
+ protocol = "file://"
+
+ return protocol + "localhost" + path.to_s if RUBY_VERSION < "2.5"
+
+ protocol + path.to_s
+ end
+
def gem_repo1(*args)
tmp("gems/remote1", *args)
end