Project

tudu

0.0
No commit activity in last 3 years
No release in over 3 years
Single person's minimum unit of task manager
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0
~> 2.14.1
~> 0.8.2

Runtime

~> 1.6.20
~> 0.18.1
 Project Readme

Tudu

Tudu is single person's minimum unit of task manager

Purpose

  • Manage single person's task.
  • You shuold use this gem by minimun unit task. For example, make spec of Hoge#some_method, implements Hoge#some_method and so on.
  • If you create some framework for user or your team, you can presentation minimum unit task-flow.
  • If you have apprentice, you can presentation task-flow for them.

Installation

Add this line to your application's Gemfile:

gem 'tudu'

And then execute:

$ bundle

Or install it yourself as:

$ gem install tudu

Structure

.
┗ tudu
    ┠ todos :todos(0-n task)
    ┠ doings :doing tasks(0-1 task)
    ┠ dones :done tasks(0-n task)
    ┗ Tudufile :in current version, we not use this

DSL List

dsl mean
add 'task_name1', 'task_name2' add tasks to todos
remove 'task_name1', 'task_name2' remove tasks from [todos, doings, dones]
choose choose first task from todos to doings
choose 'task_name' choose task from todos to doings
done complete task. doings to dones, and first todos to doings
done -p complete task. doings to dones, and first todos to doings.after show progress
tasks search all task from [todos, doings, dones]
tasks 'task_name' search task from [todos, doings, dones] by keyword 'task_name'
tasks 'task_name' -c search task from [todos, doings, dones] by keyword 'task_name' with categolized view
tasks 'task_name' -c --color search task from [todos, doings, dones] by keyword 'task_name' with categolized view, colored
todos search all task from todos
todos 'task_name' search task from todos by keyword 'task_name'
doings search all task from doings
doings 'task_name' search task from doings by keyword 'task_name'
now alias of doings command
now 'task_name' alias of doings 'task_name' command
dones search all task from dones
dones 'task_name' search task from dones by keyword 'task_name'
progress show tasks progress

Usage

init

  • generate todos,doings,dones emptyfile
  • generate Tudufile template
$ tudu init
$ tree
.
┗ tudu
    ┠ todos
    ┠ doings
    ┠ dones
    ┗ Tudufile

add task to todos file.

  • single add
$ tudu add hoge
$ tudu todos
hoge
  • multi add
$ tudu add hoge foo bar
$ tudu todos
hoge
foo
bar

remove task to todos file.

  • single remove
$ tudu add hoge hige
$ tudu remove hoge
$ tudu todos
hige
  • multi remove
$ tudu add hoge foo bar hige
$ tudu remove hoge foo bar
$ tudu todos
hige

choose task name. from todo to doing

  • choose task_name
$ tudu add hoge
$ tudu choose hoge
$ tudu todos
$ tudu doings
hoge

choose no args. from first todo to doing

  • choose
$ tudu add hoge hige
$ tudu choose
$ tudu todos
hige
$ tudu doings
hoge

done. from doing to done and from first todos to doing

  • done
$ tudu add one two three
$ tudu choose one
$ tudu done
$ tudu todos
three
$ tudu doings
two
$ tudu done
one

done. from doing to done and from first todos to doing. after, if there is no todos and doings, show celebration message.

  • done
$ tudu add one two
$ tudu choose one
$ tudu done
$ tudu done
All Tasks Finish!!
$ tudu todos
$ tudu doings
$ tudu done
one
two

done. from doing to done and from first todos to doing with progress option.

  • done -p
$ tudu add one two three
$ tudu choose one
$ tudu done -p
1/3|===>       |33%

tasks show all tasks from [todos, doings, dones].

  • tudu tasks
$ tudu add one two three
$ tudu choose one
$ tudu done
$ tudu tasks
three
two
one

tasks show all tasks from [todos, doings, dones] with categorized option.

  • tudu tasks -c
$ tudu add one two three
$ tudu choose one
$ tudu done
$ tudu tasks -c
========TODOS========
three
========DOINGS========
two
========DONES========
one

tasks show all tasks from [todos, doings, dones] with categorized option and colored option.

  • tudu tasks -c --color
$ tudu add one two three
$ tudu choose one
$ tudu done
$ tudu tasks -c
========TODOS========
three
========DOINGS========
two
========DONES========
one
  • image sample

show specific tasks from [todos, doings, dones].

  • tudu tasks search_word
$ tudu add test tester testest
$ tudu search teste
tester
testest

todos show all todos tasks.

  • tudu todos
$ tudu add hoge hige
$ tudu choose hoge
$ tudu todos
hige

todos 'search word' show specific todos tasks.

same as 'tasks search_word'

doings show all doings tasks.

You can use doings command's alias 'now'

  • tudu doings(or now)
$ tudu add hoge
$ tudu choose hoge
$ tudu doings
hoge

doings 'search word' show specific doings tasks.

same as 'tasks search_word' case

dones show all dones tasks.

  • tudu dones
$ tudu add hoge hige
$ tudu choose hoge
$ tudu done
$ tudu doings
hige
$ tudu dones
hoge

dones 'search word' show specific dones tasks.

same as 'tasks search_word' case

progress show tasks progress.

  • tudu progress
$ tudu add a b c
$ tudu choose a
$ tudu done
$ tudu progress
1/3|===>       |33%

Notes

if you want to do other operation, edit [todos, doings, dones] directly.

it's only plain text, so you can edit freely.

History

  • version 0.0.5 : add color option to 'tasks'
  • version 0.0.4 : add 'progress'. add progress option to 'done'.
  • version 0.0.3 : add categorized option to 'tasks'.
  • version 0.0.2 : after execute 'done', if there is no todos and doings, display celebration message.
  • version 0.0.2 : if 'choose' no args. choose first tudu.
  • version 0.0.1 : first release.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request