0
0
Fork 0

using mailto scheme in AUTHORS.md (#8663)

This commit is contained in:
rinsuki 2018-09-10 09:01:03 +09:00 committed by Eugen Rochko
parent b0b484ba18
commit 25dd523887
2 changed files with 106 additions and 106 deletions

View file

@ -17,7 +17,7 @@ namespace :repo do
contributors = Oj.load(response.body)
contributors.each do |c|
file << "* [#{c['login']}](#{c['html_url']})\n" if c['login']
file << "* [#{c['name']}](#{c['email']})\n" if c['name']
file << "* [#{c['name']}](mailto:#{c['email']})\n" if c['name']
end
url = LinkHeader.parse(response.headers['Link']).find_link(%w(rel next))&.href
end