I have a rails application that has several associations. There will be a lot of content like youtube videos and images as well.
One way I can think of doing this is, by using factory girl but I cant find a way to deump the data into my development database.
It looks more like that it is for testing purposes only. However it was a close match.
I do not want to use seeds.rb as it is to be basically used for loading default data in rails app.
I plan on using faker gem as well.
I cant use migrations for such a heavy operation either/ or rather it should not be used.
Please suggest