Project

doneski

0.0
No commit activity in last 3 years
No release in over 3 years
A simple task management CLI similar in usage to PivotalTracker.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.5
>= 0
 Project Readme

doneski

Gem Version

This is a quick CLI to manage tasks.

You can install the gem simply with:

$ gem install doneski 

Simply run doneski to list your current tasks. You can add a task by calling doneski -a The task title here.

alt tag

Current functionality:

Listing tasks

$ doneski -l [column to sort]

Example: doneski -l title will sort by title

Adding tasks

$ doneski -a The task title goes here

This will add a new task with the title The task title goes here and move the task to the :new phase

Removing tasks

$ doneski -r [id]

Example: doneski -r xysf will remove the task with the id of xysf Example: doneski -r will remove ALL completed tasks

Starting tasks

$ doneski -s id

Example: doneski -s xysf will move the task with the id xysf to the :started phase

Finishing tasks

$ doneski -f id

Example: doneski -f xysf will finish the task with the id xysf to the :completed phase

Getting help

$ doneski -h

This will display the help menu

Ruby 2.0 and 1.9.3 have been tested.