Task List Rails

We are going to build the task list we built in Sinatra using our new rails knowledge. This project will enable us to keep track of and persist, add, edit and remove tasks.

Baseline

Once you've achieved this baseline, take a walk around the room and see if you can answer questions or help other teams.

This project...

  • Will have our standard Github setup (create a branch, fork, switch to your branch)
  • requires you to create a Rails 4.2.4 application
    • create a controller for your Tasks
    • create and a Task model and run a migration to create that model's table
      • Each task should include at least a name, a description and an indicator for whether or not it is complete
    • conform to Rails conventions on naming and inflection

Tinker with your Model in the rails console in order to ensure you have created your model appropriately.