File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -513,8 +513,8 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
513
513
[ @rspeicher ] : https://github.com/rspeicher
514
514
[ @jonatas ] : https://github.com/jonatas
515
515
[ @pocke ] : https://github.com/pocke
516
- [ @bmorrall ] : https:/github.com/bmorrall
517
- [ @zverok ] : https:/github.com/zverok
516
+ [ @bmorrall ] : https:// github.com/bmorrall
517
+ [ @zverok ] : https:// github.com/zverok
518
518
[ @timrogers ] : https://github.com/timrogers
519
519
[ @yevhene ] : https://github.com/yevhene
520
520
[ @walf443 ] : https://github.com/walf443
@@ -559,7 +559,6 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
559
559
[ @andrykonchin ] : https://github.com/andrykonchin
560
560
[ @harrylewis ] : https://github.com/harrylewis
561
561
[ @elliterate ] : https://github.com/elliterate
562
- [ @mlarraz ] : https://github.com/mlarraz
563
562
[ @jtannas ] : https://github.com/jtannas
564
563
[ @mockdeep ] : https://github.com/mockdeep
565
564
[ @biinari ] : https://github.com/biinari
Original file line number Diff line number Diff line change 10
10
end
11
11
end
12
12
13
+ describe 'contributors' do
14
+ let ( :contributors ) do
15
+ changelog . partition ( "<!-- Contributors -->\n \n " ) . last . lines
16
+ end
17
+
18
+ it 'does not contain duplicates' do
19
+ expect ( contributors . uniq ) . to eq ( contributors )
20
+ end
21
+
22
+ it 'links to github profiles' do
23
+ expect ( contributors ) . to all (
24
+ match ( %r{\A \[ @([^\] ]+)\] : https://github.com/\1 \n \z } )
25
+ )
26
+ end
27
+ end
28
+
13
29
describe 'entry' do
14
30
subject ( :entries ) { lines . grep ( /^\* / ) . map ( &:chomp ) }
15
31
You can’t perform that action at this time.
0 commit comments