mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 12:39:53 +01:00
8)
This commit is contained in:
parent
a5c8405b9a
commit
02cb318142
1 changed files with 29 additions and 0 deletions
29
Rakefile
29
Rakefile
|
@ -97,4 +97,33 @@ namespace :justask do
|
|||
|
||||
puts "Purged #{destroyed_count} dead notifications."
|
||||
end
|
||||
|
||||
desc "Prints lonely people."
|
||||
task loners: :environment do
|
||||
people = {}
|
||||
Question.all.each do |q|
|
||||
if q.author_is_anonymous and q.author_name != 'justask'
|
||||
q.answers.each do |a|
|
||||
if q.user == a.user
|
||||
people[q.user.screen_name] ||= 0
|
||||
people[q.user.screen_name] += 1
|
||||
puts "#{q.user.screen_name} -- answer id #{a.id}"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
max = 0
|
||||
res = []
|
||||
people.each { |k, v| max = v if v > max }
|
||||
people.each { |k, v| res << k if v == max }
|
||||
if res.length == 0
|
||||
puts "No one? I hope you're just on the development session."
|
||||
else
|
||||
puts res.length == 1 ? "And the winner is..." : "And the winners are..."
|
||||
print "\033[5;31m"
|
||||
res.each { |name| puts " - #{name}" }
|
||||
print "\033[0m"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue