Sha256: 4127ef71994ac9670560e0e28c8a5732cc457236eaf198e35e874986400225b8
Contents?: true
Size: 1.26 KB
Versions: 13
Compression:
Stored size: 1.26 KB
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 def perform(*) require_application_and_environment! deprecation_warning 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 + source_annotation_directories end def deprecation_warning return if source_annotation_directories.empty? ActiveSupport::Deprecation.warn("`SOURCE_ANNOTATION_DIRECTORIES` is deprecated and will be removed in Rails 6.1. You can add default directories by using config.annotations.register_directories instead.") end def source_annotation_directories ENV["SOURCE_ANNOTATION_DIRECTORIES"].to_s.split(",") end end end end
Version data entries
13 entries across 13 versions & 1 rubygems