Skip to content

Commit d108ba8

Browse files
ryanfox1985ctran
authored andcommittedDec 17, 2016
Routes markdown (#429)
* --active-admin replaced as a flag. closes #363. * Implemented routes in markdown, closes #178
1 parent 983d36f commit d108ba8

File tree

5 files changed

+147
-41
lines changed

5 files changed

+147
-41
lines changed
 

‎.rubocop_todo.yml

+17-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2016-12-16 13:08:29 +0100 using RuboCop version 0.46.0.
3+
# on 2016-12-17 10:16:05 +0100 using RuboCop version 0.46.0.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
@@ -101,14 +101,14 @@ Lint/UselessAccessModifier:
101101
Exclude:
102102
- 'lib/annotate/annotate_routes.rb'
103103

104-
# Offense count: 16
104+
# Offense count: 17
105105
Metrics/AbcSize:
106106
Max: 144
107107

108108
# Offense count: 3
109109
# Configuration parameters: CountComments.
110110
Metrics/BlockLength:
111-
Max: 135
111+
Max: 134
112112

113113
# Offense count: 2
114114
Metrics/BlockNesting:
@@ -118,17 +118,22 @@ Metrics/BlockNesting:
118118
Metrics/CyclomaticComplexity:
119119
Max: 36
120120

121-
# Offense count: 339
121+
# Offense count: 350
122122
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
123123
# URISchemes: http, https
124124
Metrics/LineLength:
125125
Max: 543
126126

127-
# Offense count: 23
127+
# Offense count: 24
128128
# Configuration parameters: CountComments.
129129
Metrics/MethodLength:
130130
Max: 70
131131

132+
# Offense count: 1
133+
# Configuration parameters: CountComments.
134+
Metrics/ModuleLength:
135+
Max: 116
136+
132137
# Offense count: 7
133138
Metrics/PerceivedComplexity:
134139
Max: 41
@@ -254,12 +259,13 @@ Style/ExtraSpacing:
254259
- 'spec/integration/rails_4.2.0/Gemfile'
255260
- 'spec/integration/rails_4.2.0/config.ru'
256261

257-
# Offense count: 8
262+
# Offense count: 9
258263
# Configuration parameters: EnforcedStyle, SupportedStyles.
259264
# SupportedStyles: format, sprintf, percent
260265
Style/FormatString:
261266
Exclude:
262267
- 'lib/annotate/annotate_models.rb'
268+
- 'lib/annotate/annotate_routes.rb'
263269

264270
# Offense count: 181
265271
# Cop supports --auto-correct.
@@ -284,14 +290,6 @@ Style/GuardClause:
284290
Style/HashSyntax:
285291
Enabled: false
286292

287-
# Offense count: 1
288-
# Cop supports --auto-correct.
289-
# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
290-
# SupportedStyles: special_inside_parentheses, consistent, align_brackets
291-
Style/IndentArray:
292-
Exclude:
293-
- 'lib/annotate/annotate_routes.rb'
294-
295293
# Offense count: 6
296294
# Cop supports --auto-correct.
297295
# Configuration parameters: SupportedStyles, IndentationWidth.
@@ -437,7 +435,7 @@ Style/Semicolon:
437435
- 'bin/annotate'
438436
- 'spec/integration/rails_2.3_with_bundler/config/initializers/unified_initializer.rb'
439437

440-
# Offense count: 4
438+
# Offense count: 3
441439
# Cop supports --auto-correct.
442440
# Configuration parameters: EnforcedStyle, SupportedStyles.
443441
# SupportedStyles: space, no_space
@@ -519,7 +517,7 @@ Style/SpaceInsideStringInterpolation:
519517
Exclude:
520518
- 'lib/annotate/annotate_models.rb'
521519

522-
# Offense count: 222
520+
# Offense count: 223
523521
# Cop supports --auto-correct.
524522
# Configuration parameters: EnforcedStyle, SupportedStyles, ConsistentQuotesInMultiline.
525523
# SupportedStyles: single_quotes, double_quotes
@@ -570,18 +568,18 @@ Style/TrailingCommaInLiteral:
570568
- 'spec/integration/rails_4.1.1/lib/tasks/auto_annotate_models.rake'
571569
- 'spec/integration/rails_4.2.0/lib/tasks/auto_annotate_models.rake'
572570

573-
# Offense count: 1
571+
# Offense count: 2
574572
# Cop supports --auto-correct.
575573
Style/TrailingWhitespace:
576574
Exclude:
575+
- 'spec/annotate/annotate_routes_spec.rb'
577576
- 'spec/integration/rails_2.3_with_bundler/db/schema.rb'
578577

579-
# Offense count: 3
578+
# Offense count: 2
580579
# Cop supports --auto-correct.
581580
Style/UnneededInterpolation:
582581
Exclude:
583582
- 'bin/annotate'
584-
- 'lib/annotate/annotate_routes.rb'
585583

586584
# Offense count: 8
587585
# Cop supports --auto-correct.

‎bin/annotate

+3-4
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,11 @@ OptionParser.new do |opts|
9090
ENV['routes'] = 'true'
9191
end
9292

93-
opts.on('-aa', '--active-admin', 'Annotate active_admin models') do |p|
94-
ENV['active_admin'] = p
93+
opts.on('-aa', '--active-admin', 'Annotate active_admin models') do
94+
ENV['active_admin'] = 'true'
9595
end
9696

97-
opts.on('-v', '--version',
98-
'Show the current version of this gem') do
97+
opts.on('-v', '--version', 'Show the current version of this gem') do
9998
puts "annotate v#{Annotate.version}"; exit
10099
end
101100

‎lib/annotate/annotate_routes.rb

+45-18
Original file line numberDiff line numberDiff line change
@@ -18,33 +18,60 @@
1818
# Released under the same license as Ruby. No Support. No Warranty.
1919
#
2020
module AnnotateRoutes
21-
PREFIX = '# == Route Map'
21+
PREFIX = '== Route Map'.freeze
22+
PREFIX_MD = '## Route Map'.freeze
23+
HEADER_ROW = ['Prefix', 'Verb', 'URI Pattern', 'Controller#Action']
2224

23-
def self.do_annotations(options={})
24-
return unless routes_exists?
25+
class << self
26+
def content(line, maxs, options = {})
27+
return line.rstrip unless options[:format_markdown]
2528

26-
routes_map = AnnotateRoutes.app_routes_map(options)
29+
line.each_with_index.map do |elem, index|
30+
min_length = maxs.map { |arr| arr[index] }.max || 0
2731

28-
header = [
29-
"#{PREFIX}" + (options[:timestamp] ? " (Updated #{Time.now.strftime('%Y-%m-%d %H:%M')})" : ''), '#'
30-
] + routes_map.map { |line| "# #{line}".rstrip }
32+
sprintf("%-#{min_length}.#{min_length}s", elem.tr('|', '-'))
33+
end.join(' | ')
34+
end
35+
36+
def header(options = {})
37+
routes_map = app_routes_map(options)
38+
39+
out = ["# #{options[:format_markdown] ? PREFIX_MD : PREFIX}" + (options[:timestamp] ? " (Updated #{Time.now.strftime('%Y-%m-%d %H:%M')})" : '')]
40+
out += ['#']
41+
return out if routes_map.size.zero?
3142

32-
existing_text = File.read(routes_file)
43+
maxs = [HEADER_ROW.map(&:size)] + routes_map[1..-1].map { |line| line.split.map(&:size) }
44+
max = maxs.map(&:max).max
3345

34-
if write_contents(existing_text, header, options)
35-
puts "#{routes_file} annotated."
46+
if options[:format_markdown]
47+
out += ["# #{content(HEADER_ROW, maxs, options)}"]
48+
out += ["# #{content(['-' * max, '-' * max, '-' * max, '-' * max], maxs, options)}"]
49+
else
50+
out += ["# #{content(routes_map[0], maxs, options)}"]
51+
end
52+
53+
out + routes_map[1..-1].map { |line| "# #{content(options[:format_markdown] ? line.split(' ') : line, maxs, options)}" }
3654
end
37-
end
3855

39-
def self.remove_annotations(options={})
40-
return unless routes_exists?
41-
existing_text = File.read(routes_file)
42-
content, where_header_found = strip_annotations(existing_text)
56+
def do_annotations(options = {})
57+
return unless routes_exists?
58+
existing_text = File.read(routes_file)
59+
60+
if write_contents(existing_text, header(options), options)
61+
puts "#{routes_file} annotated."
62+
end
63+
end
64+
65+
def remove_annotations(options={})
66+
return unless routes_exists?
67+
existing_text = File.read(routes_file)
68+
content, where_header_found = strip_annotations(existing_text)
4369

44-
content = strip_on_removal(content, where_header_found)
70+
content = strip_on_removal(content, where_header_found)
4571

46-
if write_contents(existing_text, content, options)
47-
puts "Removed annotations from #{routes_file}."
72+
if write_contents(existing_text, content, options)
73+
puts "Removed annotations from #{routes_file}."
74+
end
4875
end
4976
end
5077

‎potato.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
Colons can be used to align columns.
2+
3+
| Tables | Are | Cool |
4+
| ------------- |:-------------:| -----:|
5+
| col 3 is | right-aligned | $1600 |
6+
| col 2 is | centered | $12 |
7+
| zebra stripes | are neat | $1 |
8+
9+
There must be at least 3 dashes separating each header cell.
10+
The outer pipes (|) are optional, and you don't need to make the
11+
raw Markdown line up prettily. You can also use inline Markdown.
12+
13+
Markdown | Less | Pretty
14+
--- | --- | ---
15+
*Still* | `renders` | **nicely**
16+
1 | 2 | 3
17+
18+
19+
## Route Map
20+
21+
 Prefix | Verb | URI Pattern | Controller#Action
22+
--------- | ---------- | --------------- | --------------------
23+
myaction1 | GET | /url1(.:format) | mycontroller1#action
24+
myaction2 | POST | /url2(.:format) | mycontroller2#action
25+
 myaction3 | DELETE-GET | /url3(.:format) | mycontroller3#action \n")
26+
27+
28+
29+
Table name: `users`
30+
31+
### Columns
32+
33+
Name | Type | Attributes
34+
----------------------- | ------------------ | ---------------------------
35+
**`id`** | `integer` | `not null, primary key`
36+
**`foreign_thing_id`** | `integer` | `not null`
37+
38+
### Foreign Keys
39+
40+
* `fk_rails_...` (_ON DELETE => on_delete_value ON UPDATE => on_update_value_):
41+
* **`foreign_thing_id => foreign_things.id`**

‎spec/annotate/annotate_routes_spec.rb

+41
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,47 @@ def mock_file(stubs = {})
1717
AnnotateRoutes.do_annotations
1818
end
1919

20+
describe 'Annotate#example' do
21+
before(:each) do
22+
expect(File).to receive(:exists?).with(ROUTE_FILE).and_return(true)
23+
24+
expect(File).to receive(:read).with(ROUTE_FILE).and_return("")
25+
expect(AnnotateRoutes).to receive(:`).with('rake routes').and_return(' Prefix Verb URI Pattern Controller#Action
26+
myaction1 GET /url1(.:format) mycontroller1#action
27+
myaction2 POST /url2(.:format) mycontroller2#action
28+
myaction3 DELETE|GET /url3(.:format) mycontroller3#action')
29+
30+
expect(AnnotateRoutes).to receive(:puts).with(ANNOTATION_ADDED)
31+
end
32+
33+
it 'annotate normal' do
34+
expect(File).to receive(:open).with(ROUTE_FILE, 'wb').and_yield(mock_file)
35+
expect(@mock_file).to receive(:puts).with("
36+
# == Route Map
37+
#
38+
# Prefix Verb URI Pattern Controller#Action
39+
# myaction1 GET /url1(.:format) mycontroller1#action
40+
# myaction2 POST /url2(.:format) mycontroller2#action
41+
# myaction3 DELETE|GET /url3(.:format) mycontroller3#action\n")
42+
43+
AnnotateRoutes.do_annotations
44+
end
45+
46+
it 'annotate markdown' do
47+
expect(File).to receive(:open).with(ROUTE_FILE, 'wb').and_yield(mock_file)
48+
expect(@mock_file).to receive(:puts).with("
49+
# ## Route Map
50+
#
51+
# Prefix | Verb | URI Pattern | Controller#Action
52+
# --------- | ---------- | --------------- | --------------------
53+
# myaction1 | GET | /url1(.:format) | mycontroller1#action
54+
# myaction2 | POST | /url2(.:format) | mycontroller2#action
55+
# myaction3 | DELETE-GET | /url3(.:format) | mycontroller3#action\n")
56+
57+
AnnotateRoutes.do_annotations(format_markdown: true)
58+
end
59+
end
60+
2061
describe 'When adding' do
2162
before(:each) do
2263
expect(File).to receive(:exists?).with(ROUTE_FILE).and_return(true)

0 commit comments

Comments
 (0)
Please sign in to comment.