Sha256: 45255c6094efb5f59f670de683beebf400d4d6fd1448561e7e0d3c672a2ee659

Contents?: true

Size: 591 Bytes

Versions: 1

Compression:

Stored size: 591 Bytes

Contents

# $Id$

if HAVE_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

end  # if HAVE_SOURCE_ANNOTATION_EXTRACTOR

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bones-1.0.0 data/tasks/annotations.rake