haraldmartin / things-rb

Ruby library & command line tool for accessing the backend of the Mac GTD app Things.

wfarr (author)
Thu Apr 16 11:52:05 -0700 2009
haraldmartin (committer)
Fri Aug 28 16:27:11 -0700 2009
things-rb / Rakefile
100644 14 lines (11 sloc) 0.427 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('things-rb', '0.1.1') do |p|
  p.description = "Library and command-line tool for accessing Things.app databases"
  p.url = "http://github.com/haraldmartin/things-rb"
  p.author = "Martin Ström"
  p.email = "martin.strom@gmail.com"
  p.development_dependencies = []
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }