Things Templates
An easy(?) way to save templates for Things.app. These can include projects or items that you often find yourself creating over and over together. Example: a template might include the ingredients needed for a particular recipe that you want to add to a grocery list.
Installation
$ gem install things_templates
Usage
$ build_template <path to template>
Template Format
project: 'Project Name' <optional>
tags: <optional>
- 'Tag 1'
- 'Tag 2'
items:
- 'Item 1'
- 'Item 2'
Tags will be applied to all items. If a project of the same name already exists, the existing project will be used. If you don't get a cryptic error and instead get a cryptic note with a project and/or item IDs, pop on over to Things and reap your rewards!
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Write tests (I'm using RSpec in the
spec
folder) - Make sure all tests pass
- Make sure Cane (
bundle exec cane
) passes. - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request