Sha256: 8ce1cec0215a978186289b705561a828b40dd5178127c310bbd83d87d6ac4ba4

Contents?: true

Size: 605 Bytes

Versions: 3

Compression:

Stored size: 605 Bytes

Contents

# $Id: annotations.rake 423 2007-12-29 18:32:34Z tim_pease $

if HAVE_BONES

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

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

  desc "Enumerate all FIXME annotations"
  task :fixme do
    Bones::AnnotationExtractor.enumerate "FIXME"
  end

  desc "Enumerate all TODO annotations"
  task :todo do
    Bones::AnnotationExtractor.enumerate "TODO"
  end
end

end  # if HAVE_BONES

# EOF

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bones-1.1.1 tasks/annotations.rake
bones-1.1.0 tasks/annotations.rake
bones-1.1.2 tasks/annotations.rake