display multiple authors better.

Before:
Copyright (c) 2013 ["a", "b"]

After:
Copyright (c) 2013 a, b
This commit is contained in:
Tomoyuki Sahara
2013-07-23 09:53:39 +09:00
parent 29a3f8b8e3
commit e8df8dcae6
+2 -1
View File
@@ -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