Created
February 28, 2014 01:56
-
-
Save Colt/9263740 to your computer and use it in GitHub Desktop.
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
## Rails Basics Quiz | |
____ | |
* Create a new Rails app called puppies | |
* Make a puppy controller | |
* Add an index method to the puppies controller | |
* Add an index view | |
* What do you add to your routes file to make your homepage route to the index view you just created? | |
* Create a model for your puppies controller. | |
* If this is your migration file, how do you add a string column named breed? | |
* What terminal command do you need to type in order for your changes to alter the database? | |
* Shoot you messed up! How do you reverse changes to your database? | |
* What is the terminal command to view all your routes? | |
* What does MVC stand for? | |
* What is params? What kind of data structure is it? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment