diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-19 10:23:12 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-19 10:23:12 +0200 |
commit | 4b29c337347b40528d672cd2e2b52b1c9efe33e5 (patch) | |
tree | 8c4bfd0e73790754a834491c69283767d173cde6 /tasks/notes.rake | |
parent | a378e73d9da612960d0cf3eef5011c13c0139c39 (diff) | |
download | ffi-efl-4b29c337347b40528d672cd2e2b52b1c9efe33e5.zip ffi-efl-4b29c337347b40528d672cd2e2b52b1c9efe33e5.tar.gz |
goto bundler
Diffstat (limited to 'tasks/notes.rake')
-rw-r--r-- | tasks/notes.rake | 27 |
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 |