normalize_attributes
normalize_attributes copied to clipboard
Sometimes you want to normalize data before saving it to the database like down casing e-mails, removing spaces and so on. This Rails plugin allows you to do so in a simple way.
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @takost in actions/checkout#1436 Support fetching without the --progress option...
## Description Single table inheritance models do not inherit normalized attributes. I would expect them to. E.g. ```ruby class Animal < ActiveRecord base normalize :name, :downcase end class Cat <...