Taskomaly Keeps Chugging Along

Straight from the readme:

you need to clean your room

make it a project

 proj = Taskomaly::Project.new 'Room Cleaning'

add some tasks to it

 proj.add 'put away clean laundry'
 proj.add 'wash dirty dishes'

tag those suckas up

 proj.add 'file taxes @april @15'
 proj.tasks.last.tags                   # [:april, :"15"]
 
 proj.add 'organize shelf'
 proj.tasks.last.tag :knickknacks, 1000, 'september'
 proj.tasks.last.tags                   # [:knickknacks, :"1000", :september]

EDIT As usual, I omit all the pertinent information. You can see the code here and attempt to install the gem with instructions from my previous blog entry.

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*