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!
- Model:
Task
- View:
TasksView
- Controller:
TasksController
We fake the database with TasksRepository
and the browser with Router
.