mirror of
https://github.com/etesync/android
synced 2024-11-15 12:28:57 +00:00
54e6426dc4
* add yield points to allow processing of groups with many contacts * new script to generate contacts for testing
14 lines
279 B
Ruby
Executable File
14 lines
279 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
|
|
File.open("contacts.vcf", "w") do |f|
|
|
for i in 1..600 do
|
|
f.puts "BEGIN:VCARD"
|
|
f.puts "VERSION:3.0"
|
|
f.puts "FN:Kontakt Nr. #{i}"
|
|
f.puts "N:Kontakt Nr. #{i}"
|
|
f.puts "EMAIL:#{i}@google-god.com"
|
|
f.puts "PHONE:#{i}#{i}#{i}"
|
|
f.puts "END:VCARD"
|
|
end
|
|
end
|