https://github.com/davissp14/todo
https://github.com/davissp14/todo
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/davissp14/todo
- Owner: davissp14
- Created: 2013-05-20T02:35:14.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-29T07:44:05.000Z (about 13 years ago)
- Last Synced: 2024-04-20T09:21:27.241Z (about 2 years ago)
- Language: Ruby
- Size: 164 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Todo Task Manager
====
Simple tool for managing tasks via command line.
## Example Usage ##
List active tasks.
todo tasks
=> Task: Example Task - Priority: 10
** Brief Description Here **
Create new task.
todo create_task "Fix Dns Issue" "Need this fixed by Friday..." 3
=> Task: Fix Dns Issue - Priority: 3
** Need this fixed by Friday... **
Task: Example Task - Priority: 10
** Brief Description Here **
Delete task.
todo delete_task "Fix Dns Issue"
=> Task: Example Task - Priority: 10
** Brief Description Here **
Set task priority.
todo set_priority "Example Task" 4
=> Task: Example Task - Priority: 4
** Brief Description Here **