Squashed 'projects/bad-nlp/name-database/' content from commit 46d2e01a

git-subtree-dir: projects/bad-nlp/name-database
git-subtree-split: 46d2e01a4953b8f54e8625c9111cf5b372d80b49
This commit is contained in:
2023-03-20 18:03:18 -06:00
commit 2af495d056
669 changed files with 423076 additions and 0 deletions

13
tasks/setup.rake Normal file
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