# great gem for populating testing DB with fake data
# 1. Gemfile > gem 'faker'
# 2. in app file > require 'faker'
# 3. in IRB or in app (actually in IRB probably more useful) according to a previously created Model
1000.times do User.create(:name => Faker::Name.name, :email => Faker::Internet.email) end
Muitas opções disponíveis, consulte o repositório GitHub do Faker: Link .