Sha256: be5c1d7bb32fb769f83c839cb3b05e33bda74da5ee9b13faf4388f047500a5cc
Contents?: true
Size: 533 Bytes
Versions: 26
Compression:
Stored size: 533 Bytes
Contents
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
Version data entries
26 entries across 26 versions & 8 rubygems