Here is the target app
- The goal of this assignment is to make the code work by correcting all of the bugs that are contained within
- Checkout the target to see how your code should function
- Run
rails sample_data
to populate your database - Start with visiting the route
/users
- You will see an error message, READ THE ERROR MESSAGE
- When you understand the error message, work to figure out a solution to fix the error so the Route/Controller/Action/View functions like the target.
- Remember that the error will guide you to the bug and our skills as developers are determined by how many bugs we understand how to fix
- Refer to the routing chapter if you are stuck on the RCAV
- Once you have
/users
working correctly, check the routes file and get each working the same as the target - Run
rails grade
once all the routes are working to see what else still does not match the target - As you work, remember to navigate to
/git
and commit often as you work. - Be sure you test the behavior of your app manually to make sure it matches the target's behavior. Don't use
rails grade
to debug.