Sha256: 722d490ec4e22622c6671944488a944cf34b78fe601b97d35001cfda0ce658dd
Contents?: true
Size: 868 Bytes
Versions: 39
Compression:
Stored size: 868 Bytes
Contents
# frozen_string_literal: true require "rails/source_annotation_extractor" module Rails module Command class NotesCommand < Base # :nodoc: class_option :annotations, aliases: "-a", desc: "Filter by specific annotations, e.g. Foobar TODO", type: :array desc "notes", "Show comments in your code annotated with FIXME, OPTIMIZE, and TODO" def perform(*) boot_application! display_annotations end private def display_annotations annotations = options[:annotations] || Rails::SourceAnnotationExtractor::Annotation.tags tag = (annotations.length > 1) Rails::SourceAnnotationExtractor.enumerate annotations.join("|"), tag: tag, dirs: directories end def directories Rails::SourceAnnotationExtractor::Annotation.directories end end end end
Version data entries
39 entries across 39 versions & 5 rubygems