Provide a ActiveModel::Validations style set of helpers for models to add input filters that work on all dirty fields before validation.
The point of this is I have a project that requires some data consistency and right now that's all ad-hoc and messy. I need a better way to quickly ensure that a username is lower case, things are trimmed properly before stored in the db, etc. Right now that's all done manually on the controller or model, or not at all.