Sha256: d3fcbc1e6911ea9825b0961dbc8d4eb5b9b45fcceb1f711f62bec6c9469edc05

Contents?: true

Size: 640 Bytes

Versions: 1

Compression:

Stored size: 640 Bytes

Contents

# $Id: annotations.rake 441 2008-01-02 04:25:01Z tim_pease $

if HAVE_BONES

desc "Enumerate all annotations"
task :notes do
  Bones::AnnotationExtractor.enumerate(
      PROJ, "OPTIMIZE|FIXME|TODO", :tag => true)
end

namespace :notes do
  desc "Enumerate all OPTIMIZE annotations"
  task :optimize do
    Bones::AnnotationExtractor.enumerate(PROJ, "OPTIMIZE")
  end

  desc "Enumerate all FIXME annotations"
  task :fixme do
    Bones::AnnotationExtractor.enumerate(PROJ, "FIXME")
  end

  desc "Enumerate all TODO annotations"
  task :todo do
    Bones::AnnotationExtractor.enumerate(PROJ, "TODO")
  end
end

end  # if HAVE_BONES

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
directory_watcher-1.1.1 tasks/annotations.rake