diff options
| author | Xavier Noria <fxn@hashref.com> | 2010-06-10 22:00:55 +0200 |
|---|---|---|
| committer | Xavier Noria <fxn@hashref.com> | 2010-06-10 22:00:55 +0200 |
| commit | 63560660062d552d6bbebec007154f0c639bf865 (patch) | |
| tree | 0ff7ee5c1a63815685e9640ca4a9ceafb7732178 /railties/lib/rails/tasks/annotations.rake | |
| parent | 59e89facc2264322bcab59c9a8622380b62d4d40 (diff) | |
| parent | 61fc7a455099f179de88967f403f2038b9d3c821 (diff) | |
| download | rails-63560660062d552d6bbebec007154f0c639bf865.tar.gz rails-63560660062d552d6bbebec007154f0c639bf865.tar.bz2 rails-63560660062d552d6bbebec007154f0c639bf865.zip | |
Merge remote branch 'rails/master'
Diffstat (limited to 'railties/lib/rails/tasks/annotations.rake')
| -rw-r--r-- | railties/lib/rails/tasks/annotations.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/tasks/annotations.rake b/railties/lib/rails/tasks/annotations.rake index 10a9311b2d..9067b03d00 100644 --- a/railties/lib/rails/tasks/annotations.rake +++ b/railties/lib/rails/tasks/annotations.rake @@ -1,13 +1,13 @@ require 'rails/source_annotation_extractor' -desc "Enumerate all annotations" +desc "Enumerate all annotations (use notes:optimize, :fixme, :todo for focus)" task :notes do SourceAnnotationExtractor.enumerate "OPTIMIZE|FIXME|TODO", :tag => true end namespace :notes do ["OPTIMIZE", "FIXME", "TODO"].each do |annotation| - desc "Enumerate all #{annotation} annotations" + # desc "Enumerate all #{annotation} annotations" task annotation.downcase.intern do SourceAnnotationExtractor.enumerate annotation end |
