What is the simplest way to observe Rails ActionText for changes? My use case is to send a notification when a rich text field has been edited.
Because ActionText creates an association to a model and is not an attribute on the model the Dirty module is unavailable.
I could use a custom dirty associations module, e.g.: https://anti-pattern.com/dirty-associations-with-activerecord
I could also have an attribute on the model which saves the ActionText::Content plain text every update and is then observed.
Are there any other options?