summaryrefslogtreecommitdiff
path: root/tool/fetch-bundled_gems.rb
blob: f0d3c3cb894d0732379b09d51575227c8919bca0 (plain)
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
#!ruby -an
BEGIN {
  require 'fileutils'
  require_relative 'lib/colorize'

  color = Colorize.new

  dir = ARGV.shift
  ARGF.eof?
  FileUtils.mkdir_p(dir)
  Dir.chdir(dir)
}

n, v, u, r = $F

next unless n
next if n =~ /^#/

if File.directory?(n)
  puts "updating #{color.notice(n)} ..."
  system("git", "fetch", "--all", chdir: n) or abort
else
  puts "retrieving #{color.notice(n)} ..."
  system(*%W"git clone #{u} #{n}") or abort
end

if r
  puts "fetching #{color.notice(r)} ..."
  system("git", "fetch", "origin", r, chdir: n) or abort
end

c = r || "v#{v}"
checkout = %w"git -c advice.detachedHead=false checkout"
print %[checking out #{color.notice(c)} (v=#{color.info(v)}]
print %[, r=#{color.info(r)}] if r
puts ") ..."
unless system(*checkout, c, "--", chdir: n)
  abort if r or !system(*checkout, v, "--", chdir: n)
end

if r
  unless File.exist? "#{n}/#{n}.gemspec"
    require_relative "lib/bundled_gem"
    BundledGem.dummy_gemspec("#{n}/#{n}.gemspec")
  end
end