Skip to content

Instantly share code, notes, and snippets.

@starwels
Last active March 18, 2020 17:37
Show Gist options
  • Save starwels/01c51ca1a646d5cdb21f6a5e27cc1ed8 to your computer and use it in GitHub Desktop.
Save starwels/01c51ca1a646d5cdb21f6a5e27cc1ed8 to your computer and use it in GitHub Desktop.
10.times do |num|
Post.create(title: "Ruby is Awesome #{num}", body: 'Indeed it is') do |post|
5.times { Comment.create(body: "Comment #{num}", post: post) }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment