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`.
16 lines
458 B
Ruby
16 lines
458 B
Ruby
Gitlab::Seeder.quiet do
|
|
Project.all.each do |project|
|
|
(1..10).each do |i|
|
|
issue_params = {
|
|
title: FFaker::Lorem.sentence(6),
|
|
description: FFaker::Lorem.sentence,
|
|
state: ['opened', 'closed'].sample,
|
|
milestone: project.milestones.sample,
|
|
assignee: project.team.users.sample
|
|
}
|
|
|
|
Issues::CreateService.new(project, project.team.users.sample, issue_params).execute
|
|
print '.'
|
|
end
|
|
end
|
|
end
|