Todo.txt 2.7

Todo.txt is a todo list manager in CLI using a simple txt file.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Mayeutik 2011-03-05 20:12:04 +01:00 committed by Adam Vandenberg
parent 46bcec9351
commit 4d9699272e

18
Formula/todo-txt.rb Normal file
View file

@ -0,0 +1,18 @@
require 'formula'
class TodoTxt <Formula
url 'https://github.com/downloads/ginatrapani/todo.txt-cli/todo.txt_cli-2.7.tar.gz'
homepage 'http://todotxt.com/'
md5 'b4ef313bbb8f185fe4a21ce07ad6933d'
def install
bin.install 'todo.sh'
prefix.install 'todo.cfg' # Default config file
end
def caveats; <<-EOS.undent
To configure, copy the default config to your home and edit it:
cp #{prefix}/todo.cfg ~/.todo.cfg
EOS
end
end