Merge commit '2af495d056616cc0f757a055114b56df2e0d5d84' as 'projects/bad-nlp/name-database'

This commit is contained in:
2023-03-20 18:03:18 -06:00
669 changed files with 423076 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
["given", "family"].each do |set|
("aa".."zz").each do |prefix|
path = "#{set}_name/#{prefix.first}/#{prefix}.yml"
dir = File.dirname(path)
directory dir
file path => dir do
open(path, "w") do |f|
f.puts "---"
f.puts "# This file contain #{set} names starting with #{prefix}"
end
end
end
end