Skip to content

Instantly share code, notes, and snippets.

@elomar
Created May 22, 2009 14:31
Show Gist options
  • Select an option

  • Save elomar/116159 to your computer and use it in GitHub Desktop.

Select an option

Save elomar/116159 to your computer and use it in GitHub Desktop.
require 'faker'
Sham.name { Faker::Name.name }
Sham.email { Faker::Internet.email }
Sham.title { Faker::Lorem.sentence }
Sham.body { Faker::Lorem.paragraph }
User.blueprint do
name
email
end
Post.blueprint do
title
author
body
end
Comment.blueprint do
post
author_name { Sham.name }
author_email { Sham.email }
body
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment