Hi,
I have 10 models and 3 of them need some additional custom methods which happen to be:
has_staged_version?
apply_staged_version
discard_staged_version
I want to define these methods once.
I could create a custom subclass of ActiveRecord:Base, define the methods there, and have my 3 models inherit from it. But is there a more "Ruby/Rails" way to achieve this?
Cheers