Skip to content

Instantly share code, notes, and snippets.

@kennethkalmer
Created July 14, 2009 09:22
Show Gist options
  • Save kennethkalmer/146871 to your computer and use it in GitHub Desktop.
Save kennethkalmer/146871 to your computer and use it in GitHub Desktop.
#
# Somewhere in a daemon where activerecord is being used
#
class MyARDaemon
include DaemonKit::ActiveRecord
def something_ar
MyModel.find(:all)
end
uses_active_record :something_ar
end
#
# Decorated method will look something like
#
module DaemonKit::ActiveRecord
def self.uses_active_record( method_name )
alias method_name_without_ar method_name
# some magic
end
def with_ar
ActiveRecord::Base.verify_active_connections!
undecorated_method_name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment