debian-mirror-gitlab/lib/tasks/gitlab/update_commit_count.rake

21 lines
641 B
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
namespace :gitlab do
desc "GitLab | Update commit count for projects"
task update_commit_count: :environment do
projects = Project.where(commit_count: 0)
puts "#{projects.size} projects need to be updated. This might take a while."
ask_to_continue unless ENV['force'] == 'yes'
projects.find_each(batch_size: 100) do |project|
print "#{project.name_with_namespace.color(:yellow)} ... "
2015-09-11 14:41:01 +05:30
unless project.repo_exists?
puts "skipping, because the repo is empty".color(:magenta)
2015-09-11 14:41:01 +05:30
next
end
project.update_commit_count
puts project.commit_count.to_s.color(:green)
2015-09-11 14:41:01 +05:30
end
end
end