mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 01:30:12 +01:00
23 lines
No EOL
533 B
Ruby
23 lines
No EOL
533 B
Ruby
require 'source_annotation_extractor'
|
|
|
|
desc "Enumerate all annotations"
|
|
task :notes do
|
|
SourceAnnotationExtractor.enumerate "OPTIMIZE|FIXME|TODO", :tag => true
|
|
end
|
|
|
|
namespace :notes do
|
|
desc "Enumerate all OPTIMIZE annotations"
|
|
task :optimize do
|
|
SourceAnnotationExtractor.enumerate "OPTIMIZE"
|
|
end
|
|
|
|
desc "Enumerate all FIXME annotations"
|
|
task :fixme do
|
|
SourceAnnotationExtractor.enumerate "FIXME"
|
|
end
|
|
|
|
desc "Enumerate all TODO annotations"
|
|
task :todo do
|
|
SourceAnnotationExtractor.enumerate "TODO"
|
|
end
|
|
end |