Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 372 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 372 Bytes

Ruby To-Do App

A simple repo to demonstrate the MVC pattern with a command line app.

Run with:

ruby lib/app.rb

Then hit Ctrl-C to quit the program. You'll lose all your todos!

Architecture

  • Model: Task
  • View: TasksView
  • Controller: TasksController

We fake the database with TasksRepository and the browser with Router.