Skip to content

Instantly share code, notes, and snippets.

@raywu
Created March 18, 2012 15:32
Show Gist options
  • Save raywu/2075443 to your computer and use it in GitHub Desktop.
Save raywu/2075443 to your computer and use it in GitHub Desktop.
Enumerate database seeds
questions = [
'How spontaneous of a traveler are you?',
'Do you drink alcohol?',
'Do you smoke cigarettes?',
'Do you like to know how things work?',
'I always like to try new things:',
'How religious are you?',
'In general, it is important to follow the rules:',
'Are you sensitive to others\' needs?'
]
questions.each do |b|
q = Question.new
q.copy = b
q.save
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment