Todotask

Yes, I’ve had some spare time :stuck_out_tongue:

== What is it? ==

ToDoTask reads through your Ruby files, looking for TODOs in the
comments, which it collects and outputs.

== Usage ==

Rakefile

require ‘todotask’

ToDoTask.new

== Get it ==

gem install todotask

Cheers,
Daniel S.

Hello,

On 2 Apr 2007, at 17:57, Daniel S. wrote:

ToDoTask reads through your Ruby files, looking for TODOs in the
comments, which it collects and outputs.

Handy!

I just wanted to let you know of a Rake task in Rails that does
something similar:

http://ryandaigle.com/articles/2007/2/26/what-s-new-in-edge-rails-
source-code-annotations

Regards,
Andy S.

On Tue, 2007-04-03 at 17:23 +0900, Andrew S. wrote:

Hello,

On 2 Apr 2007, at 17:57, Daniel S. wrote:

ToDoTask reads through your Ruby files, looking for TODOs in the
comments, which it collects and outputs.

Handy!

Thank you very much :slight_smile:

I just wanted to let you know of a Rake task in Rails that does
something similar:

http://ryandaigle.com/articles/2007/2/26/what-s-new-in-edge-rails-
source-code-annotations

Yeah, I was aware of it when I cooked this up, but I don’t really do
Rails, and it seemed a bit Rails-specific, so I just made my own,
simpler version. Probably should’ve written that somewhere…

Cheers,
Daniel S.