No commit activity in last 3 years
No release in over 3 years
.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

About

Gem version Build status Coverage status CodeClimate status YARD documentation

This format is used to store scheduled tasks: tasks that will be done later or in a certain context.

API

require 'import'

simple_format = import('simple-format')
simple_format.parse(File.read('tasks.todo'))

Format

Tomorrow
- Buy milk. #errands
- [9:20] Call with Mike.

Prague
- Pick up my shoes. #errands

Currently unsupported

  • Labels. Labels allow us to match tasks with named time frames. See #8.
- ADM: Catch up with Eva.

Intentionally unsupported

  • Comments. I want to keep the format simple and the task file small. Every time there was something like comments, the file bloated uncontrollably.
  • Task formatting. Task is a string, it doesn't recognise any structures within. Therefore, anything you can fit in to a line will be the task body. So you can put anything that {Pomodoro::Formats::Today} supports such as scheduled times and tags.

For more details about the format see parser_spec.rb.