
Add factory support for mass record generation
Reported by Michael Bleigh | April 21st, 2008 @ 11:50 AM
Should be able to use Seed Fu to pass in methods that will be used as generators. This will implicitly allow for use of Faker. Syntax should be as follows:
User.seed_factory(:id, :count => 50) do |u|
u.id_array = 1..50.to_a
u.login_factory = 'Faker::Internet.user_name'
u.first_name_factory = Proc.new{ # something that returns a first name }
end
Comments and changes to this ticket
-
Michael Bleigh April 24th, 2008 @ 10:17 AM
- Title changed from Add support for Faker and other fake generators to Add factory support for mass record generation
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
An attempt to simplify the usage of seed data in Rails applications through a dead simple API.