Project

rubytodo

0.0
No commit activity in last 3 years
No release in over 3 years
RubyTodo allows you to have in-code todos and scan them to view the todos as a list
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0

Runtime

~> 2.3.0
 Project Readme

RubyTodo

How do you manage todos in your code base? Usually people use comments like # TODO to specify todos in the code base and then use grep '# TODO' to grab them.

With rubytodo gem you can specify your todo anywhere in your code with todo "todo description" and then you can list all todos with a command rubytodo.

Installation

gem install 'rubytodo'

Quick Start

Add todo in your ruby file:

require 'rubytodo'

class MyClass
  def my_method
    todo "implement my_method"
  end
end

Then list todos in all ruby files under a given root folder:

$ rubytodo lib
Scanning todos in lib ...
lib/my_class.rb
* implement my_method