From f6882d7fff5e46658acfeab25c2b5122f6815e85 Mon Sep 17 00:00:00 2001 From: nilsding Date: Fri, 19 Dec 2014 23:20:33 +0100 Subject: [PATCH] added justask:fix_notifications task --- Rakefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Rakefile b/Rakefile index 83db07a0..6a893c89 100644 --- a/Rakefile +++ b/Rakefile @@ -79,4 +79,22 @@ namespace :justask do puts "#{sprintf "%3d", u.id}. #{u.screen_name}" end end + + desc "Fixes the notifications" + task fix_notifications: :environment do + format = '%t (%c/%C) [%b>%i] %e' + total = Notification.count + progress = ProgressBar.create title: 'Processing notifications', format: format, starting_at: 0, total: total + destroyed_count = 0 + + Notification.all.each do |n| + if n.target.nil? + n.destroy + destroyed_count += 1 + end + progress.increment + end + + puts "\nPurged #{destroyed_count} dead notifications." + end end