I wanted add a hook on before_save. Validation happens before "before_save" is called, so I moved it to before_validation :on =>:save.
Now the problem is, when I do @object.save_without_validation (sometimes I had to use this). my before_validation hook doesn't get called.
Am I missing something or is there a more robust way of adding a before hook that works for both cases?