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

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

n, v, u = $F
case n
when "minitest"
  v = "master"
when "test-unit"
else
  v = "v" + v
end

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