Is there a gem for Ruby on Rails that will allow me to select a snapshot of a production DB, clean it and make it usable in test/development environment?
I am looking at something smart enough to know to get all associations but that would allow me to say get only the first 100 records and then rename column A, B,C with random data.
@lucian my `Anonymizer` class can do the content-replacement part: https://gist.github.com/TALlama/90c29869bc6da0da3e7d4bc4fa73ac32
@TALlama Thank you very much. This is a wonderful idea to use FactoryBot.
And I love that you have a dry_run for it :)