add .slugignore

This commit is contained in:
Sven Fuchs 2012-10-03 13:50:20 +02:00
parent 54e1eaffb3
commit 00b3727f1d
2 changed files with 6 additions and 30 deletions

6
.slugignore Normal file
View File

@ -0,0 +1,6 @@
assets
spec
tmp
*.sql
*.psd
*.pdf

View File

@ -1,30 +0,0 @@
require_relative '../config/environment'
require 'statistics'
data = Statistics.daily_repository_counts
exit if data.empty?
next_thousand = 1000
last_time = data.first.first
growth = data.inject([[data.shift.last, 0]]) do |growth, (time, num)|
growth << [num, num - growth.last.first]
end
two_weeks = growth.slice(-14, 14)
average = (two_weeks.inject(0) { |sum, (total, growth)| sum + growth }.to_f / two_weeks.length).round(0)
data.each do |(time, num)|
if num >= next_thousand
thousand = num - (num % 1000)
days = (time - last_time) / (1000 * 60 * 60 * 24)
puts "#{thousand} reached on #{Time.at(time / 1000).strftime('%Y-%m-%d')} after #{days} days"
next_thousand = thousand + 1000
last_time = time
end
end
remaining = next_thousand - data.last.last
puts
puts "Average growth within last 14 days: #{average} repositories.\n"
puts "Will reach #{next_thousand} repositories in #{(remaining.to_f / average).round(2)} days."