Created
May 8, 2012 12:09
-
-
Save kbaum/2634498 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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