Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dasch/todotask
A simple ToDo task that extracts TODO items from your Ruby source
https://github.com/dasch/todotask
Last synced: 24 days ago
JSON representation
A simple ToDo task that extracts TODO items from your Ruby source
- Host: GitHub
- URL: https://github.com/dasch/todotask
- Owner: dasch
- Created: 2011-01-05T11:43:50.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-01-10T17:44:05.000Z (almost 14 years ago)
- Last Synced: 2023-04-11T15:32:56.662Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 619 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.mkd
Awesome Lists containing this project
README
ToDoTask
========A simple Rake command that extracts and displays `TODO` items from your source code.
Usage
-----Simply create a new `ToDoTask` in your Rakefile:
ToDoTask.new
Running `rake todo` will now output all `TODO` items in your `lib/` and `test/`
directories. Say you have a file `test/foomatic/foo.rb` with the contentsclass Monkey
# TODO: Make this lazy monkey do something!
# TODO: Also, can we make it dance?
endWhen you run `rake todo`, you'll see
$ rake todo
test/foomatic/foo.rb:
* TODO: Make this lazy monkey do something! (line 2)
* TODO: Also, can we make it dance? (line 3)
ToDo items: 2Installation
------------Simply run `gem install todotask`.
Contributors
------------* Daniel Schierbeck ([dasch](http://github.com/dasch))
* Nils Jonsson ([njonsson](http://github.com/njonsson))