-
Notifications
You must be signed in to change notification settings - Fork 652
/
Copy pathannotation_processor.rb
55 lines (47 loc) · 1.77 KB
/
annotation_processor.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
require_relative './base_processor'
require_relative './header_generator'
require_relative './magic_comments_extractor'
# This module provides methods for annotating config/routes.rb.
module AnnotateRoutes
# This class provides methods for adding 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 = MagicCommentsExtractor.execute(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