Is there a way to use Rails model for validation only without interaction with the database?
Would I generate model using console and use it with Active Record validations?
I'm trying to use it to validate a CSV import, use Model validations, process then output back in another CSV format.
This is done without database interaction but I thought for validation, using Model would be a good way to be less error prone.