Sha256: d57b710e82fe0b8597ee9087d3c9a5ea909e45f7da3d3e01d58a86d5ce4b99cb

Contents?: true

Size: 640 Bytes

Versions: 2

Compression:

Stored size: 640 Bytes

Contents

# $Id: annotations.rake 431 2007-12-31 21:24:37Z 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

2 entries across 2 versions & 1 rubygems

Version Path
bones-1.2.0 tasks/annotations.rake
bones-1.2.1 tasks/annotations.rake