Complex validation in Rails through plugins
Posted in Rails, Ruby, Software on Feb 8th, 2007 No Comments »
I’m writing a portfolio management application in Rails where complex validations are required between fields of instances. The MVC paradigm of Rails is very good to encapsulate all the business logic of the application in a very readable way.
I found an article here describing how to add validations to a model through plugins, making [...]