One minute
List all TODO tasks 🔖
To get all # TODO tasks from your Ruby on Rails project you can use rake notes
It'll search for comments beginning with a specific keyword and also give filename and line 📋
Code snippet 📌
# list down all comments starts with # TODO, # FIXME & # OPTIMIZE
❯ rake notes
app/controliers/admin/users_controller.rb:
* [ 20] [TODO] any other way to do this?
* [132] [FIXME] high priority for next deploy
lib/school.rb:
* [13] [OPTIMIZE] Refactor this code to make it faster
* [ 17] [FIXME] can take it up later
# list down all comments starts with # FIXME
❯ rake notes:custom ANNOTATION=FIXME
app/controliers/admin/users_controller.rb:
* [132] [FIXME] high priority for next deploy lib/school.rb:
* [ 17] [FIXME] can take it up later
# list down all comments starts with # OPTIMIZE
❯ rake notes:custom ANNOTATION=OPTIMIZE
lib/school.rb:
* [ 13] [OPTIMIZE] Re factor this code to make it faster
Read other posts
comments powered by Disqus