In Active Record, the callbacks for save
are before_save
/after_save
, the callbacks for destroy
are before_destroy
/after_destroy
, and so forth.
Except that the callbacks for validate
are before_validation
/after_validation
. Why not before_validate
/after_validate
?