Method: MMToDo::ToDoList#show_all
- Defined in:
- lib/mm_todo/todo_list.rb
#show_all(dest = STDOUT) ⇒ Object
56 57 58 59 60 61 62 63 64 |
# File 'lib/mm_todo/todo_list.rb', line 56 def show_all(dest = STDOUT) puts "TODO:" puts "==========" show_todos puts "\n\nDone:" puts "==========" show_done puts "\n\n\n" end |