Skip to content

Instantly share code, notes, and snippets.

View polyglotdev's full-sized avatar
🔮
Focusing

Dom Hallan polyglotdev

🔮
Focusing
View GitHub Profile
@polyglotdev
polyglotdev / seeds.rb
Created October 10, 2018 01:57
seeds.db
require 'random_data'
50.times do
Post.create!(
title: RandomData.random_sentence,
body: RandomData.random_paragraph
)
end
posts = Post.all