Created
July 14, 2009 09:22
-
-
Save kennethkalmer/146871 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
# | |
# 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