Sha256: f8e9b0741365d3d5bca41882347789261f340e9a48223a100a7eaf37c9eb469c

Contents?: true

Size: 645 Bytes

Versions: 1

Compression:

Stored size: 645 Bytes

Contents

# $Id: annotations.rake 419 2007-12-29 04:39:36Z tim_pease $

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 tasks/annotations.rake