Skip to content

davelnewton/todo_gem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Todo

This is a simple gem for keeping track of to-do list items.

Installation

$ gem install todo

Usage

Add items to the to-do list like so:

Todo.walk_dog

To see all items in the to-do list, call the List method:

Todo.List
  #==> [:walk_dog]

To mark a to-do list item as completed, simply add ! to the end of the item:

Todo.walk_dog!

To add and/or complete several items on your to-do list at once, use the add method:

Todo.add do
  walk_dog
  take_out_trash!
  buy_groceries
end

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages