Created
April 15, 2013 15:33
-
-
Save marti1125/5388998 to your computer and use it in GitHub Desktop.
seed.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file should contain all the record creation needed to seed the database with its default values. | |
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). | |
# | |
# Examples: | |
# | |
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) | |
# Mayor.create(name: 'Emanuel', city: cities.first) | |
user = User.find_or_create_by_email(ENV['TEST_USER_EMAIL'].dup) | |
user.password = ENV['TEST_USER_PASSWORD'].dup | |
user.name = ENV['TEST_USER_NAME'].dup | |
user.save! | |
anon = User.find_or_create_by_email('[email protected]') | |
anon.name = "Anon" | |
anon.password = ENV['ANON_PASSWORD'].dup | |
anon.save! | |
finished_story = Story.find_or_create_by_title("My First Corpse"); | |
finished_story.user_id = user.id | |
finished_story.total_slices = 3 | |
finished_story.save! | |
bodies = [ | |
{ :user_id => anon.id, :body => "Once upon a time, there was a catfish." }, | |
{ :user_id => user.id, :body => "And he loved building sand castles.\n\nOne day, he built a huge sandcastle, big enough to live in it." }, | |
{ :user_id => anon.id, :body => "And so that's what he did.\n\nThe end."} | |
] | |
unless finished_story.done? | |
bodies.each do |slice| | |
index = bodies.index(slice) | |
finished_story.slices.create!(bodies[index]) | |
end | |
end | |
incomplete_story = Story.find_or_create_by_title("The 13 parts") | |
incomplete_story.user_id = user.id | |
incomplete_story.total_slices = 13 | |
incomplete_story.save! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment