dusk
dusk

Reputation: 53

what are some good ways to populate a rails development database with fake data

I am moving away from fixtures and populate and looking for some alternative tools to populate my development database with fake data.

Any thoughts?

Upvotes: 4

Views: 1789

Answers (3)

srboisvert
srboisvert

Reputation: 12749

Here are a few railscasts about this topic:

126 Populating a database

158 Factories not Fixtures

Upvotes: 1

Alex Rockwell
Alex Rockwell

Reputation: 1474

Take a look at Forgery

Upvotes: 1

Milan Novota
Milan Novota

Reputation: 15596

factory_girl is my personal favorite. Nice syntax, flexible.

Upvotes: 1

Related Questions