зеркало из https://github.com/github/ruby.git
42 строки
806 B
Ruby
Executable File
42 строки
806 B
Ruby
Executable File
#!ruby -an
|
|
BEGIN {
|
|
require 'fileutils'
|
|
|
|
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 #{n} ..."
|
|
system("git", "fetch", chdir: n) or abort
|
|
else
|
|
puts "retrieving #{n} ..."
|
|
system(*%W"git clone #{u} #{n}") or abort
|
|
end
|
|
|
|
if r
|
|
puts "fetching #{r} ..."
|
|
system("git", "fetch", "origin", r, chdir: n) or abort
|
|
end
|
|
|
|
c = r || "v#{v}"
|
|
checkout = %w"git -c advice.detachedHead=false checkout"
|
|
puts "checking out #{c} (v=#{v}, r=#{r}) ..."
|
|
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
|