1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
|
# frozen_string_literal: true
$:.unshift File.expand_path("../lib", __FILE__)
require "benchmark"
RUBYGEMS_REPO = if `git -C "#{File.expand_path("..")}" remote --verbose 2> #{IO::NULL}` =~ /rubygems/i
File.expand_path("..")
else
File.expand_path("tmp/rubygems")
end
def development_dependencies
@development_dependencies ||= Gem::Specification.load("bundler.gemspec").development_dependencies
end
# Benchmark task execution
module Rake
class Task
alias_method :real_invoke, :invoke
def invoke(*args)
time = Benchmark.measure(@name) do
real_invoke(*args)
end
puts "#{@name} ran for #{time}"
end
end
end
desc "Run specs"
task :spec do
sh("bin/rspec")
end
namespace :spec do
def safe_task(&block)
yield
true
rescue StandardError
false
end
desc "Ensure spec dependencies are installed"
task :deps do
deps = Hash[development_dependencies.map do |d|
[d.name, d.requirement.to_s]
end]
# JRuby can't build ronn, so we skip that
deps.delete("ronn") if defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
gem_install_command = "install --no-document --conservative " + deps.sort_by {|name, _| name }.map do |name, version|
"'#{name}:#{version}'"
end.join(" ")
sh %(#{Gem.ruby} -S gem #{gem_install_command})
end
namespace :travis do
task :deps do
# Give the travis user a name so that git won't fatally error
system "sudo sed -i 's/1000::/1000:Travis:/g' /etc/passwd"
# Strip secure_path so that RVM paths transmit through sudo -E
system "sudo sed -i '/secure_path/d' /etc/sudoers"
# Refresh packages index that the ones we need can be installed
sh "sudo apt-get update"
# Install groff so ronn can generate man/help pages
sh "sudo apt-get install groff-base -y"
# Install graphviz so that the viz specs can run
sh "sudo apt-get install graphviz -y"
# Install the gems with a consistent version of RubyGems
sh "gem update --system 3.0.4"
# Install the other gem deps, etc
Rake::Task["spec:deps"].invoke
end
end
task :clean do
rm_rf "tmp"
end
desc "Run the real-world spec suite"
task :realworld => %w[set_realworld spec]
namespace :realworld do
desc "Re-record cassettes for the realworld specs"
task :record => %w[set_record realworld]
task :set_record do
ENV["BUNDLER_SPEC_FORCE_RECORD"] = "TRUE"
end
end
task :set_realworld do
ENV["BUNDLER_REALWORLD_TESTS"] = "1"
end
desc "Run the spec suite with the sudo tests"
task :sudo => %w[set_sudo spec]
task :set_sudo do
ENV["BUNDLER_SUDO_TESTS"] = "1"
end
# RubyGems specs by version
namespace :rubygems do
# When editing this list, also edit .travis.yml!
branches = %w[master]
releases = %w[v2.5.2 v2.6.14 v2.7.10 v3.0.4]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
task rg do
sh("bin/rspec --format progress")
end
# Create tasks like spec:rubygems:v1.8.3:sudo to run the sudo specs
namespace rg do
task :sudo => ["set_sudo", rg]
task :realworld => ["set_realworld", rg]
end
task "set_#{rg}" do
ENV["RGV"] = rg
end
task rg => ["set_#{rg}"]
task "rubygems:all" => rg
end
desc "Run specs under a RubyGems checkout (set RGV=path)"
task "co" do
sh("bin/rspec --format progress")
end
namespace "co" do
task :sudo => ["set_sudo", "co"]
task :realworld => ["set_realworld", "co"]
end
task "setup_co" do
ENV["RGV"] = RUBYGEMS_REPO
end
task "co" => "setup_co"
task "rubygems:all" => "co"
end
desc "Run the tests on Travis CI against a RubyGem version (using ENV['RGV'])"
task :travis do
rg = ENV["RGV"] || raise("RubyGems version is required on Travis!")
rg = "co" if File.directory?(File.expand_path(ENV["RGV"]))
# disallow making network requests on CI
ENV["BUNDLER_SPEC_PRE_RECORDED"] = "TRUE"
puts "\n\e[1;33m[Travis CI] Running bundler specs against RubyGems #{rg}\e[m\n\n"
specs = safe_task { Rake::Task["spec:rubygems:#{rg}"].invoke }
Rake::Task["spec:rubygems:#{rg}"].reenable
puts "\n\e[1;33m[Travis CI] Running bundler sudo specs against RubyGems #{rg}\e[m\n\n"
sudos = system("sudo -E rake spec:rubygems:#{rg}:sudo")
# clean up by chowning the newly root-owned tmp directory back to the travis user
system("sudo chown -R #{ENV["USER"]} #{File.join(File.dirname(__FILE__), "tmp")}")
Rake::Task["spec:rubygems:#{rg}"].reenable
puts "\n\e[1;33m[Travis CI] Running bundler real world specs against RubyGems #{rg}\e[m\n\n"
realworld = safe_task { Rake::Task["spec:rubygems:#{rg}:realworld"].invoke }
{ "specs" => specs, "sudo" => sudos, "realworld" => realworld }.each do |name, passed|
if passed
puts "\e[0;32m[Travis CI] #{name} passed\e[m"
else
puts "\e[0;31m[Travis CI] #{name} failed\e[m"
end
end
unless specs && sudos && realworld
raise "Spec run failed, please review the log for more information"
end
end
end
desc "Run RuboCop"
task :rubocop do
sh("bin/rubocop --parallel")
end
namespace :man do
if RUBY_ENGINE == "jruby"
task(:build) {}
else
ronn_dep = development_dependencies.find do |dep|
dep.name == "ronn"
end
ronn_requirement = ronn_dep.requirement.to_s
begin
gem "ronn", ronn_requirement
require "ronn"
rescue LoadError
task(:build) { abort "We couln't activate ronn (#{ronn_requirement}). Try `gem install ronn:'#{ronn_requirement}'` to be able to build the help pages" }
else
directory "man"
index = []
sources = Dir["man/*.ronn"].map {|f| File.basename(f, ".ronn") }
sources.map do |basename|
ronn = "man/#{basename}.ronn"
manual_section = ".1" unless basename =~ /\.(\d+)\Z/
roff = "man/#{basename}#{manual_section}"
index << [ronn, File.basename(roff)]
file roff => ["man", ronn] do
sh "#{Gem.ruby} -S ronn --roff --pipe #{ronn} > #{roff}"
end
file "#{roff}.txt" => roff do
sh "groff -Wall -mtty-char -mandoc -Tascii #{roff} | col -b > #{roff}.txt"
end
task :build_all_pages => "#{roff}.txt"
end
file "index.txt" do
index.map! do |(ronn, roff)|
[File.read(ronn).split(" ").first, roff]
end
index = index.sort_by(&:first)
justification = index.map {|(n, _f)| n.length }.max + 4
File.open("man/index.txt", "w") do |f|
index.each do |name, filename|
f << name.ljust(justification) << filename << "\n"
end
end
end
task :build_all_pages => "index.txt"
desc "Remove all built man pages"
task :clean do
leftovers = Dir["man/*"].reject do |f|
File.extname(f) == ".ronn"
end
rm leftovers if leftovers.any?
end
desc "Build the man pages"
task :build => ["man:clean", "man:build_all_pages"]
end
end
end
automatiek_dep = development_dependencies.find do |dep|
dep.name == "automatiek"
end
automatiek_requirement = automatiek_dep.requirement.to_s
begin
gem "automatiek", automatiek_requirement
require "automatiek"
rescue LoadError
namespace :vendor do
desc "Vendor a specific version of molinillo"
task(:molinillo) { abort "We couldn't activate automatiek (#{automatiek_requirement}). Try `gem install automatiek:'#{automatiek_requirement}'` to be able to vendor gems" }
desc "Vendor a specific version of fileutils"
task(:fileutils) { abort "We couldn't activate automatiek (#{automatiek_requirement}). Try `gem install automatiek:'#{automatiek_requirement}'` to be able to vendor gems" }
desc "Vendor a specific version of thor"
task(:thor) { abort "We couldn't activate automatiek (#{automatiek_requirement}). Try `gem install automatiek:'#{automatiek_requirement}'` to be able to vendor gems" }
desc "Vendor a specific version of net-http-persistent"
task(:"net-http-persistent") { abort "We couldn't activate automatiek (#{automatiek_requirement}). Try `gem install automatiek:'#{automatiek_requirement}'` to be able to vendor gems" }
end
else
desc "Vendor a specific version of molinillo"
Automatiek::RakeTask.new("molinillo") do |lib|
lib.download = { :github => "https://github.com/CocoaPods/Molinillo" }
lib.namespace = "Molinillo"
lib.prefix = "Bundler"
lib.vendor_lib = "lib/bundler/vendor/molinillo"
end
desc "Vendor a specific version of thor"
Automatiek::RakeTask.new("thor") do |lib|
lib.download = { :github => "https://github.com/erikhuda/thor" }
lib.namespace = "Thor"
lib.prefix = "Bundler"
lib.vendor_lib = "lib/bundler/vendor/thor"
end
desc "Vendor a specific version of fileutils"
Automatiek::RakeTask.new("fileutils") do |lib|
lib.download = { :github => "https://github.com/ruby/fileutils" }
lib.namespace = "FileUtils"
lib.prefix = "Bundler"
lib.vendor_lib = "lib/bundler/vendor/fileutils"
end
desc "Vendor a specific version of net-http-persistent"
Automatiek::RakeTask.new("net-http-persistent") do |lib|
lib.download = { :github => "https://github.com/drbrain/net-http-persistent" }
lib.namespace = "Net::HTTP::Persistent"
lib.prefix = "Bundler::Persistent"
lib.vendor_lib = "lib/bundler/vendor/net-http-persistent"
mixin = Module.new do
def namespace_files
super
require_target = vendor_lib.sub(%r{^(.+?/)?lib/}, "") << "/lib"
relative_files = files.map {|f| Pathname.new(f).relative_path_from(Pathname.new(vendor_lib) / "lib").sub_ext("").to_s }
process_files(/require (['"])(#{Regexp.union(relative_files)})/, "require \\1#{require_target}/\\2")
end
end
lib.send(:extend, mixin)
end
end
task :override_version do
next unless version = ENV["BUNDLER_SPEC_SUB_VERSION"]
version_file = File.expand_path("../lib/bundler/version.rb", __FILE__)
contents = File.read(version_file)
unless contents.sub!(/(^\s+VERSION\s*=\s*)"#{Gem::Version::VERSION_PATTERN}"/, %(\\1"#{version}"))
abort("Failed to change bundler version")
end
File.open(version_file, "w") {|f| f << contents }
end
task :default => :spec
Dir["task/*.rake"].each(&method(:load))
task :generate_files => Rake::Task.tasks.select {|t| t.name.start_with?("lib/bundler/generated") }
|