Skip to content

Instantly share code, notes, and snippets.

@kbaum
Created May 8, 2012 12:09
Show Gist options
  • Save kbaum/2634498 to your computer and use it in GitHub Desktop.
Save kbaum/2634498 to your computer and use it in GitHub Desktop.
module ResqueJob
class ActiveSanityJob
@queue = :medium
def self.perform
ActiveSanity::Checker.check!
raise "Invalid Records in your database. Check http://#{ActionMailer::Base.default_url_options[:host]}/admin/invalid_records for more details" if InvalidRecord.any?
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment