mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e111f38f34
Windows paths do not start with a slash, so we add an extra slash to separate the host from the path in file:// urls. Otherwise "D:" is parsed as the host segment in the URI. The path for those URLs now starts with "/", so we ignore that leading character when using the URI's path. This reduces Windows CI spec failures from 429 to 355. https://github.com/bundler/bundler/commit/1b7e274cbc
139 lines
2.8 KiB
Ruby
139 lines
2.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "pathname"
|
|
|
|
module Spec
|
|
module Path
|
|
def root
|
|
@root ||= Pathname.new(ruby_core? ? "../../../.." : "../../..").expand_path(__FILE__)
|
|
end
|
|
|
|
def gemspec
|
|
@gemspec ||= root.join(ruby_core? ? "lib/bundler/bundler.gemspec" : "bundler.gemspec")
|
|
end
|
|
|
|
def bindir
|
|
@bindir ||= root.join(ruby_core? ? "libexec" : "exe")
|
|
end
|
|
|
|
def spec_dir
|
|
@spec_dir ||= root.join(ruby_core? ? "spec/bundler" : "spec")
|
|
end
|
|
|
|
def tmp(*path)
|
|
root.join("tmp", *path)
|
|
end
|
|
|
|
def home(*path)
|
|
tmp.join("home", *path)
|
|
end
|
|
|
|
def default_bundle_path(*path)
|
|
if Bundler::VERSION.split(".").first.to_i < 3
|
|
system_gem_path(*path)
|
|
else
|
|
bundled_app(*[".bundle", ENV.fetch("BUNDLER_SPEC_RUBY_ENGINE", Gem.ruby_engine), Gem::ConfigMap[:ruby_version], *path].compact)
|
|
end
|
|
end
|
|
|
|
def bundled_app(*path)
|
|
root = tmp.join("bundled_app")
|
|
FileUtils.mkdir_p(root)
|
|
root.join(*path)
|
|
end
|
|
|
|
alias_method :bundled_app1, :bundled_app
|
|
|
|
def bundled_app2(*path)
|
|
root = tmp.join("bundled_app2")
|
|
FileUtils.mkdir_p(root)
|
|
root.join(*path)
|
|
end
|
|
|
|
def vendored_gems(path = nil)
|
|
bundled_app(*["vendor/bundle", Gem.ruby_engine, Gem::ConfigMap[:ruby_version], path].compact)
|
|
end
|
|
|
|
def cached_gem(path)
|
|
bundled_app("vendor/cache/#{path}.gem")
|
|
end
|
|
|
|
def base_system_gems
|
|
tmp.join("gems/base")
|
|
end
|
|
|
|
def file_uri_for(path)
|
|
protocol = "file://"
|
|
root = Gem.win_platform? ? "/" : ""
|
|
|
|
return protocol + "localhost" + root + path.to_s if RUBY_VERSION < "2.5"
|
|
|
|
protocol + root + path.to_s
|
|
end
|
|
|
|
def gem_repo1(*args)
|
|
tmp("gems/remote1", *args)
|
|
end
|
|
|
|
def gem_repo_missing(*args)
|
|
tmp("gems/missing", *args)
|
|
end
|
|
|
|
def gem_repo2(*args)
|
|
tmp("gems/remote2", *args)
|
|
end
|
|
|
|
def gem_repo3(*args)
|
|
tmp("gems/remote3", *args)
|
|
end
|
|
|
|
def gem_repo4(*args)
|
|
tmp("gems/remote4", *args)
|
|
end
|
|
|
|
def security_repo(*args)
|
|
tmp("gems/security_repo", *args)
|
|
end
|
|
|
|
def system_gem_path(*path)
|
|
tmp("gems/system", *path)
|
|
end
|
|
|
|
def system_bundle_bin_path
|
|
system_gem_path("bin/bundle")
|
|
end
|
|
|
|
def lib_path(*args)
|
|
tmp("libs", *args)
|
|
end
|
|
|
|
def bundler_path
|
|
root.join("lib")
|
|
end
|
|
|
|
def global_plugin_gem(*args)
|
|
home ".bundle", "plugin", "gems", *args
|
|
end
|
|
|
|
def local_plugin_gem(*args)
|
|
bundled_app ".bundle", "plugin", "gems", *args
|
|
end
|
|
|
|
def tmpdir(*args)
|
|
tmp "tmpdir", *args
|
|
end
|
|
|
|
def ruby_core?
|
|
# avoid to wornings
|
|
@ruby_core ||= nil
|
|
|
|
if @ruby_core.nil?
|
|
@ruby_core = true & (ENV["BUNDLE_RUBY"] && ENV["BUNDLE_GEM"])
|
|
else
|
|
@ruby_core
|
|
end
|
|
end
|
|
|
|
extend self
|
|
end
|
|
end
|