page 1 of 3
»
GREP 2.0
It’s time to say goodbye to grep (at least for non-highvolume searches)
FIXME, TODO and OPTIMIZE code comments
You can add some special notes to your source code comments in Rails to remind you later of stuff you need to do:
class Article < ActiveRecord::Base # TODO add named_scopes # FIXME method A is broken # OPTIMIZE improve the code has_many :comments .... endYou can list these special notes with a rake task:
$ rake notes app/models/article.rb: * [2] [TODO] add named_scopes * [3] [FIXME] method A is broken * [4] [OPTIMIZE] improve the codeYou can also list notes of each kind individually with
rake notes:todo,rake notes:fixmeandrake notes:optimize.
You can even list your own, custom notes withrake notes:custom ANNOTATION=MYANNO.



