to-do 1.3.1

A simple command line todo application written in Ruby.

What's new in 1.3.1

What's new in 1.3

Install

    gem install to-do

Features

How to Use

This is just basic usage. For more information, view todo -h todo –help

Create a new todo list or switch to an existing list

    todo create My New Todo List
    todo switch My Existing List

Add some tasks to the current list

    todo add Cook Dinner
    todo add Write Paper
    todo a Do Laundy
    todo a Clean Things

Display the current list

    todo display
    todo d

    ********************************
            My New Todo List       
    ********************************

    1. Cook Dinner
    2. Write Paper
    3. Do Laundry
    4. Clean Things

    Completed:                                      0/4

Finish a task

    todo finish -n 2
    todo f Clean Things

    ********************************
            My New Todo List       
    ********************************

        1. Cook Dinner
        3. Do Laundry

    Completed:                                      2/4
        2. Write Paper
        4. Clean Things

Undo completing a task

    todo undo write paper
    todo u -n 2

Clear completed tasks and reset completed count

    todo clear

Clear the entire list and reset the count

    todo clear -a

Delete a list

    todo remove My New Todo List
    todo rm My Existing list

View usage details

    todo -h
    todo --help

View version

    todo -v
    todo --version

Future Plans

Similar Projects

Contributing to to-do

Copyright © 2012 Kristen Mills. See LICENSE.txt for further details.