我有以下
class Item < ActiveRecord::Base
after_create TellMe
end
class TellMe
def self.after_create(model)
end
并希望能够做类似的事情:
i=Item.new :name => 'my test name'
i.send(:TellMe.after_create)
类似于我如何在公共方法上调用发送?看起来我可以
i.instance_eval 'TellMe.after_create(self)'
但感觉有点丑(除其他外)