Sha256: 01744e2fa56b97d63b71fddbcd6aea6a11b3820ce841eb5fcb4a74d129250803

Contents?: true

Size: 586 Bytes

Versions: 41

Compression:

Stored size: 586 Bytes

Contents

# $Id$

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

41 entries across 37 versions & 10 rubygems

Version Path
webby-0.7.3 tasks/annotations.rake