mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
display multiple authors better.
Before: Copyright (c) 2013 ["a", "b"] After: Copyright (c) 2013 a, b
This commit is contained in:
+2
-1
@@ -74,9 +74,10 @@ please check the following additional licenses too:
|
||||
GEMS_LEGAL
|
||||
|
||||
gems.map do |g|
|
||||
authors = [g.authors].flatten.sort.join(", ")
|
||||
f.puts
|
||||
f.puts "GEM: #{g.name}"
|
||||
f.puts "Copyright (c) #{Time.now.year} #{g.authors}"
|
||||
f.puts "Copyright (c) #{Time.now.year} #{authors}"
|
||||
f.puts "License: #{g.licenses}"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user