1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge bundler-2.2.0.rc.2

This commit is contained in:
Hiroshi SHIBATA 2020-10-15 13:20:25 +09:00
parent 7ffd14a18c
commit d386a58f6f
Notes: git 2020-10-15 17:19:31 +09:00
200 changed files with 1058 additions and 3672 deletions

View file

@ -27,7 +27,7 @@ module Bundler
return false, specific_failure_message(e)
end
private
private
def specific_failure_message(e)
message = "#{e.class}: #{e.message}\n"

View file

@ -130,7 +130,7 @@ module Bundler
Bundler.ui.warn(warning.join("\n"))
end
private
private
def failed_specs
@specs.select(&:failed?)

View file

@ -16,12 +16,12 @@ module Bundler
file.puts "ruby_version = RbConfig::CONFIG[\"ruby_version\"]"
file.puts "path = File.expand_path('..', __FILE__)"
paths.each do |path|
file.puts %($:.unshift "\#{path}/#{path}")
file.puts %($:.unshift File.expand_path("\#{path}/#{path}"))
end
end
end
private
private
def paths
@specs.map do |spec|