Flagdoc
Flagdoc is an alternative to the rails notes inspired by the Yardoc syntax. Now, you can add customs flags with priority level
./example/file.rb
# @flag [OLD, HIGH] being removed, prefere bar method
def foo
# Do something...
end
# @flag [NEW] replacing foo method
def
# Do something...
end
# @flag [TODO, LOW] must be renamed to baz
def bazz
# Do something...
end
Will return something like that:

Levels:
- LOW
- NORMAL
- HIGH