9789b56a31
Adds a version requirement which it didn't have before, at 2.0.0. This version has breaking API changes in that the namespace is now `FFaker` instead of `Faker`.
32 lines
664 B
Ruby
32 lines
664 B
Ruby
Gitlab::Seeder.quiet do
|
|
(2..20).each do |i|
|
|
begin
|
|
User.create!(
|
|
username: FFaker::Internet.user_name,
|
|
name: FFaker::Name.name,
|
|
email: FFaker::Internet.email,
|
|
confirmed_at: DateTime.now,
|
|
password: '12345678'
|
|
)
|
|
|
|
print '.'
|
|
rescue ActiveRecord::RecordInvalid
|
|
print 'F'
|
|
end
|
|
end
|
|
|
|
(1..5).each do |i|
|
|
begin
|
|
User.create!(
|
|
username: "user#{i}",
|
|
name: "User #{i}",
|
|
email: "user#{i}@example.com",
|
|
confirmed_at: DateTime.now,
|
|
password: '12345678'
|
|
)
|
|
print '.'
|
|
rescue ActiveRecord::RecordInvalid
|
|
print 'F'
|
|
end
|
|
end
|
|
end
|