Project

todo

0.01
No commit activity in last 3 years
No release in over 3 years
simple command line todo list manager
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
~> 3.0

Runtime

>= 1.4.0
>= 2.8.2
 Project Readme

Simple command-line todo list manager¶ ↑

Really want to get things done? Don’t want to juggle with web based todo lists? Get your things done with command-line. No hassle, no distraction - Try out todo ruby gem.

Features¶ ↑

  • Uses human readable YAML to store the todo lists (You could edit the todo list manually)

  • Supports project specific todo lists.

    (Creates automatically a file '.todo.yml' in the project-directory you are using it)
  • Supports tagging

Install¶ ↑

gem install todo

Example¶ ↑

Here is a small sample on how to use todo gem

#visit your project folder
cd projects/newapp

#add a task
todo add "write the specs"
- add tags : important, due:24/08/2014

#listing all tasks
todo list

#listing tasks tagged 'important'
todo list --tag important

#removing a task by his number (index)
todo remove 1

Issues/Improvements¶ ↑

Todo is very minimalistic by its nature. Feel free to try, fork and send PRs.