代码拉取完成,页面将自动刷新
#! /usr/bin/env ruby
#
command = ARGV[0]
exclude = ['figures', 'figures-dia', 'figures-source', 'couchapp', 'latex', 'pdf', 'epub', 'en', 'ebooks']
data = []
original_lines=`grep -r -h '^[^[:space:]#]' en/[0]* | grep -v '^Insert'| wc -l`.to_i
Dir.glob("*").each do |dir|
if !File.file?(dir) && !exclude.include?(dir)
lines = `git diff-tree -r -p --diff-filter=M master:en master:#{dir} | grep '^-[^[:space:]#-]' | grep -v '^-Insert' | wc -l`.strip.to_i
last_commit = `git log -1 --no-merges --format="%ar" #{dir}`.chomp
authors = ""
if command == 'authors'
authors = `git shortlog --no-merges -s -n #{dir}`.chomp
end
data << [dir, lines, authors, last_commit]
end
end
d = data.sort { |a, b| b[1] <=> a[1] }
d.each do |dir, lines, authors, last|
puts "#{dir.ljust(10)} - #{(lines*100)/original_lines}% (#{last})"
if command == 'authors'
puts "Authors: #{authors.split("\n").size}"
puts authors
puts
end
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。