mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7ed1fc527e
And reenable exclusion because the bug why we added them has been fixed. See https://github.com/rubocop-hq/rubocop/issues/6861. https://github.com/bundler/bundler/commit/bda63fcffc
91 lines
2.7 KiB
Ruby
91 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "rubygems/user_interaction"
|
|
require_relative "path"
|
|
require "fileutils"
|
|
|
|
module Spec
|
|
module Rubygems
|
|
DEV_DEPS = {
|
|
"automatiek" => "~> 0.2.0",
|
|
"rake" => "~> 12.0",
|
|
"ronn" => "~> 0.7.3",
|
|
"rspec" => "~> 3.6",
|
|
"rubocop" => "= 0.74.0",
|
|
"rubocop-performance" => "= 1.4.0",
|
|
}.freeze
|
|
|
|
DEPS = {
|
|
# artifice doesn't support rack 2.x now.
|
|
"rack" => "< 2.0",
|
|
"rack-test" => "~> 1.1",
|
|
"artifice" => "~> 0.6.0",
|
|
"compact_index" => "~> 0.11.0",
|
|
"sinatra" => "~> 1.4.7",
|
|
# Rake version has to be consistent for tests to pass
|
|
"rake" => "12.3.2",
|
|
"builder" => "~> 3.2",
|
|
# ruby-graphviz is used by the viz tests
|
|
"ruby-graphviz" => ">= 0.a",
|
|
}.freeze
|
|
|
|
def self.dev_setup
|
|
deps = DEV_DEPS
|
|
|
|
# JRuby can't build ronn, so we skip that
|
|
deps.delete("ronn") if RUBY_ENGINE == "jruby"
|
|
|
|
install_gems(deps)
|
|
end
|
|
|
|
def self.gem_load(gem_name, bin_container)
|
|
gem_activate(gem_name)
|
|
load Gem.bin_path(gem_name, bin_container)
|
|
end
|
|
|
|
def self.gem_activate(gem_name)
|
|
gem_requirement = DEV_DEPS[gem_name]
|
|
gem gem_name, gem_requirement
|
|
end
|
|
|
|
def self.gem_require(gem_name)
|
|
gem_activate(gem_name)
|
|
require gem_name
|
|
end
|
|
|
|
def self.setup
|
|
Gem.clear_paths
|
|
|
|
ENV["BUNDLE_PATH"] = nil
|
|
ENV["GEM_HOME"] = ENV["GEM_PATH"] = Path.base_system_gems.to_s
|
|
ENV["PATH"] = [Path.bindir, Path.system_gem_path.join("bin"), ENV["PATH"]].join(File::PATH_SEPARATOR)
|
|
|
|
manifest = DEPS.to_a.sort_by(&:first).map {|k, v| "#{k} => #{v}\n" }
|
|
manifest_path = Path.base_system_gems.join("manifest.txt")
|
|
# it's OK if there are extra gems
|
|
if !manifest_path.file? || !(manifest - manifest_path.readlines).empty?
|
|
FileUtils.rm_rf(Path.base_system_gems)
|
|
FileUtils.mkdir_p(Path.base_system_gems)
|
|
puts "installing gems for the tests to use..."
|
|
install_gems(DEPS)
|
|
manifest_path.open("w") {|f| f << manifest.join }
|
|
end
|
|
|
|
ENV["HOME"] = Path.home.to_s
|
|
ENV["TMPDIR"] = Path.tmpdir.to_s
|
|
|
|
Gem::DefaultUserInteraction.ui = Gem::SilentUI.new
|
|
end
|
|
|
|
def self.install_gems(gems)
|
|
reqs, no_reqs = gems.partition {|_, req| !req.nil? && !req.split(" ").empty? }
|
|
no_reqs.map!(&:first)
|
|
reqs.map! {|name, req| "'#{name}:#{req}'" }
|
|
deps = reqs.concat(no_reqs).join(" ")
|
|
gem = Spec::Path.ruby_core? ? ENV["BUNDLE_GEM"] : "#{Gem.ruby} -S gem"
|
|
cmd = "#{gem} install #{deps} --no-document --conservative"
|
|
puts cmd
|
|
system(cmd) || raise("Installing gems #{deps} for the tests to use failed!")
|
|
end
|
|
end
|
|
end
|