Skip to content

Instantly share code, notes, and snippets.

@victusfate
Forked from linden-zz/gist:361416
Created March 10, 2012 12:29
Show Gist options
  • Save victusfate/2011295 to your computer and use it in GitHub Desktop.
Save victusfate/2011295 to your computer and use it in GitHub Desktop.
class BaseTask
def self.perform(*args)
ActiveRecord::Base.verify_active_connections!
end
end
class SomeTask < BaseTask
def self.perform(*args)
super
# do some stuff
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment