BigW Consortium Gitlab

12_snippets.rb 723 Bytes
Newer Older
1 2
Gitlab::Seeder.quiet do
  contents = [
3 4 5
    `curl https://gist.githubusercontent.com/randx/4275756/raw/da2f262920c96d1a970d48bf2e99147954b1f4bd/glus1204.sh`,
    `curl https://gist.githubusercontent.com/randx/3754594/raw/11026a295e6ef3a151c635707a3e1e8e15fc4725/gitlab_setup.sh`,
    `curl https://gist.githubusercontent.com/randx/3065552/raw/29fbd09f4605a5ea22a5a9095e35fd1938dea4d6/gistfile1.sh`,
6 7 8 9 10 11 12 13
  ]

  (1..50).each  do |i|
    user = User.all.sample

    PersonalSnippet.seed(:id, [{
      id: i,
      author_id: user.id,
14
      title: Faker::Lorem.sentence(3),
15 16 17 18 19 20 21 22
      file_name:  Faker::Internet.domain_word + '.sh',
      private: [true, false].sample,
      content: contents.sample,
    }])
    print('.')
  end
end