class method ActiveRecord.observe
ActiveRecord.observe(event_name,callback) → Array
Observe an event on all models. observer will be called with model_class, model_instance.
ActiveRecord.observe('afterDestroy',function(model,instance){});


