gyunyu

Simple RTM app for CLI made with Ruby

Required

Install

$ gem install gyunyu

How to use

$ gyunyu
Usage: gyunyu [options]
    -l, --list LIST
    -f, --filter FILTER
    -c, --custom-filter FILTER
    -s, --custom-filter-list
    -d, --field FIELD
    -o, --format FORMAT
$ gyunyu -f 'dueWithin:"1 week"'
list,task_id,name,due
家,227119591,可燃ゴミ,2012-01-10 08:00:00 +0900
家,226594887,可燃ゴミ,2012-01-06 08:00:00 +0900
家,226034564,資源回収ゴミ,2012-01-08 00:00:00 +0900
...

Filter Howto

$ gyunyu -l 仕事 -l 個人
# => (list:仕事 or list:個人)

$ gyunyu -l 仕事 -f due:today
# => (list:仕事) and (due:today)

On 2012-01-05,

$ gyunyu -l 個人 -c today
# => (list:個人) and (dueAfter:2012-01-04T23:59:59Z and dueBefore:2012-01-05T24:00:00Z)

Even if you live in a timezone other than UTC, you get true today's task list !

Field Howto

$ gyunyu -d name -d due
list,name,due
...

same above

$ gyunyu -d name,due
list,name,due
...

Supported

Not Supported

Contributing to gyunyu

Copyright © 2011 wtnabe. See LICENSE.txt for further details.