# frozen_string_literal: true # This module provides methods for annotating config/routes.rb. module AnnotateRb module RouteAnnotator # This class is abstract class of classes adding and removing annotation to config/routes.rb. class AnnotationProcessor < BaseProcessor # @return [String] def execute if routes_file_exist? if update "#{routes_file} was annotated." else "#{routes_file} was not changed." end else "#{routes_file} could not be found." end end private def header @header ||= HeaderGenerator.generate(options) end def generate_new_content_array(content, header_position) magic_comments_map, content = Helper.extract_magic_comments_from_array(content) if %w(before top).include?(options[:position_in_routes]) new_content_array = [] new_content_array += magic_comments_map new_content_array << '' if magic_comments_map.any? new_content_array += header new_content_array << '' if content.first != '' new_content_array += content else # Ensure we have adequate trailing newlines at the end of the file to # ensure a blank line separating the content from the annotation. content << '' unless content.last == '' # We're moving something from the top of the file to the bottom, so ditch # the spacer we put in the first time around. content.shift if header_position == :before && content.first == '' new_content_array = magic_comments_map + content + header end # Make sure we end on a trailing newline. new_content_array << '' unless new_content_array.last == '' new_content_array end end end end