Created
October 5, 2012 07:31
-
-
Save lakshminarayanan/3838563 to your computer and use it in GitHub Desktop.
User Demo Data
This file contains 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
User.delete_all | |
superman = User.create! name: "Superman", password: "superman" | |
superman.fleet "It's ok to be scared" | |
spiderman = User.create! name: "Spiderman", password: "spiderman" | |
spiderman.fleet "Your friendly neighbourhood spiderman" | |
spiderman.fleet "RT @greengoblin : No matter what you do for them, eventually, they will hate you" | |
terminator = User.create! name: "Terminator", password: "terminator" | |
terminator.fleet "I will be back" | |
terminator.fleet "I might be back" | |
terminator.fleet "Not so sure anymore" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment