-
Notifications
You must be signed in to change notification settings - Fork 652
/
Copy pathannotate_routes.rb
45 lines (42 loc) · 1.17 KB
/
annotate_routes.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
# == Annotate Routes
#
# Based on:
#
#
#
# Prepends the output of "rake routes" to the top of your routes.rb file.
# Yes, it's simple but I'm thick and often need a reminder of what my routes
# mean.
#
# Running this task will replace any existing route comment generated by the
# task. Best to back up your routes file before running:
#
# Author:
# Gavin Montague
#
# Released under the same license as Ruby. No Support. No Warranty.
#
require_relative './annotate_routes/annotation_processor'
require_relative './annotate_routes/removal_processor'
# This module provides methods for annotating config/routes.rb.
module AnnotateRoutes
class << self
# @param options [Hash]
# @return [String]
def do_annotations(options = {})
routes_file = File.join('config', 'routes.rb')
AnnotationProcessor.execute(options, routes_file).tap do |result|
puts result
end
end
# @param options [Hash]
# @return [String]
def remove_annotations(options = {})
routes_file = File.join('config', 'routes.rb')
RemovalProcessor.execute(options, routes_file).tap do |result|
puts result
end
end
end
end