0.0
No commit activity in last 3 years
No release in over 3 years
Creates tasks for omnifocus, things, reminders
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

~> 0.2
~> 0.10
~> 1.6
~> 2.7
~> 1.3
 Project Readme

#Create Task A module for creating tasks in OmniFocus, Things, DueApp, and Apple Reminders on the Mac

I created this module for easy integration from my ruby apps into the Big 4 of Task Managers.

To use this in your app, simply include lib/create_todo.rb in your source.

Creating tasks is as easy as

CreateTask::OmniFocus.new(name: "Task name", note: "Task note", start_date: "7/17/2013", due_date: "7/29/2013")

CreateTask::Things.new(name: "Task name", note: "Task note", due_date: "7/17/2013", tags: "github, gtd")

CreateTask::DueApp.new(name: "Task name", due_date: "7/17/2013")

CreateTask::Reminders.new(name: "Task name", due_date: "7/17/2013")

###Requirements:

  • AppScript (for OmniFocus)
  • Chronic (for date parsing)
  • A Mac (no brainer)

Credits: Brett Terpstra (@ttscoff) for OmniFocus task inspiration and his date parser method