A way of displaying important messages to the user in Rails
What is the flash?
300
The command to send your repo's changes to a remote repository
What is git push?
300
Gathers model data and triggers template rendering
What is the Controller?
400
A way to display a string backwards
puts str.reverse
400
The gem we used for testing ruby code
What is minitest?
400
The helper that generates an HTML form for a given object
What is form_for?
400
A way to save your work-in-progress and reset to the last commit
What is git stash?
400
The folder where all your Portfolio MVC code is stored
What is portfolio/app?
500
Delimits a block of code
do
...
end
or
{ ... }
500
A gem used for simulating a user in a web browser
What is Capybara?
500
The parent class of all Models?
The base class of the ORM layer that Rails uses?
The source of Rails's amazing powers?
How objects in Rails know to use database columns as instance attributes
What is ActiveRecord::Base
500
The command to change the active branch in your repository