vote up 2 vote down star

I had read through a rails book and once found we can add # TODO: and some # stuff in codes, so we can you some rake cmd to look back.

My problems is I can't find where are those "# stuff" and "rake cmd" I google and search around, but can't find and don't know what keywords to search.

Thanks,

flag

45% accept rate

4 Answers

vote up 7 vote down check

You can use # TODO, # FIXME, and # OPTIMIZE and you can easily get all of these with the following rake task: 'rake notes'

link|flag
vote up 2 vote down

btw, you need to run that command from the root dir of your rails app. Also, you can run:

rake -T

to get a full list of the tasks in your rails' Rakefile

link|flag
This is also useful. Thanks – art Nov 7 at 19:40
vote up 1 vote down

rake notes:todo

link|flag
vote up 1 vote down
grep -rn "# TODO" .
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.