In ASP NET MVC I can create a class library where I have help classes for different situations (date conversion, encryption, etc.), but I have a specific one that receives my model and goes through the properties and those that are type String
passes them to uppercase, so I do something like this:
ClientesLogica.Save(Helpers.ViewModelToUpper(model));
How can I do something similar in Rails, and not have to do it field by field?