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

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

n, v, u = $F

if File.directory?(n)
  puts "updating #{n} ..."
  system("git", (v == "master" ? "pull" : "fetch"), chdir: n) or abort
else
  puts "retrieving #{n} ..."
  system(*%W"git clone #{u} #{n}") or abort
end
unless system(*%W"git checkout #{v.sub(/\A(?=\d)/, 'v')}", chdir: n)
  unless /\A\d/ =~ v and system(*%W"git checkout #{v}", chdir: n)
    abort
  end
end