summaryrefslogtreecommitdiffstats
path: root/tasks/notes.rake
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-05-18 17:19:21 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-05-18 17:19:21 +0200
commit5dc46fec654ec6ee57334e61005967dc5e557e6c (patch)
treea48524eb060af5d9f2c13ed8f5cf6b763720fc1d /tasks/notes.rake
parentcb0ffa6cfd04dfae81bce57fbbe528f719d3efe5 (diff)
downloadedoors-ruby-5dc46fec654ec6ee57334e61005967dc5e557e6c.zip
edoors-ruby-5dc46fec654ec6ee57334e61005967dc5e557e6c.tar.gz
remove rake tasks
Diffstat (limited to 'tasks/notes.rake')
-rw-r--r--tasks/notes.rake27
1 files changed, 0 insertions, 27 deletions
diff --git a/tasks/notes.rake b/tasks/notes.rake
deleted file mode 100644
index 7f7ee79..0000000
--- a/tasks/notes.rake
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- coding: UTF-8 -*-
-#
-if HAVE_BONES
-
-desc "Enumerate all annotations"
-task :notes do |t|
- id = if t.application.top_level_tasks.length > 1
- t.application.top_level_tasks.slice!(1..-1).join(' ')
- end
- Bones::AnnotationExtractor.enumerate(PROJ, PROJ.notes.tags.join('|'), id, :tag => true)
-end
-
-namespace :notes do
- PROJ.notes.tags.each do |tag|
- desc "Enumerate all #{tag} annotations"
- task tag.downcase.to_sym do |t|
- id = if t.application.top_level_tasks.length > 1
- t.application.top_level_tasks.slice!(1..-1).join(' ')
- end
- Bones::AnnotationExtractor.enumerate(PROJ, tag, id)
- end
- end
-end
-
-end # if HAVE_BONES
-
-# EOF