randomperson 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.0.8 Added French names. Added Thai script names, unfortunately the last names are places as couldn't get a proper list. Added a negation for the add_ method, see README
2
+
1
3
  v0.0.7 All Basque names added.
2
4
 
3
5
  v0.0.6 Added ancient Greek names. Improved default method call for formats.
data/Manifest CHANGED
@@ -23,6 +23,9 @@ lib/randomperson/Names/BritishSuffix.rb
23
23
  lib/randomperson/Names/EnglishFemaleFirst.rb
24
24
  lib/randomperson/Names/EnglishLast.rb
25
25
  lib/randomperson/Names/EnglishMaleFirst.rb
26
+ lib/randomperson/Names/FrenchFemaleFirst.rb
27
+ lib/randomperson/Names/FrenchLast.rb
28
+ lib/randomperson/Names/FrenchMaleFirst.rb
26
29
  lib/randomperson/Names/ScottishFemaleFirst.rb
27
30
  lib/randomperson/Names/ScottishLast.rb
28
31
  lib/randomperson/Names/ScottishMaleFirst.rb
@@ -32,7 +35,10 @@ lib/randomperson/Names/SpanishMaleFirst.rb
32
35
  lib/randomperson/Names/SwedishFemaleFirst.rb
33
36
  lib/randomperson/Names/SwedishLast.rb
34
37
  lib/randomperson/Names/SwedishMaleFirst.rb
38
+ lib/randomperson/Names/ThaiFemaleFirst.rb
35
39
  lib/randomperson/Names/ThaiFirst.rb
40
+ lib/randomperson/Names/ThaiLast.rb
41
+ lib/randomperson/Names/ThaiMaleFirst.rb
36
42
  lib/randomperson/Names/ThaiRomanisedFemaleFirst.rb
37
43
  lib/randomperson/Names/ThaiRomanisedLast.rb
38
44
  lib/randomperson/Names/ThaiRomanisedMaleFirst.rb
data/README CHANGED
@@ -138,6 +138,25 @@ Do you see how this is working? If you need to check what's loaded, have a look
138
138
  choice.last
139
139
  choice.prefix
140
140
  choice.suffix
141
+
142
+ ==NEGATIONS
143
+
144
+ Sometimes you'll want to load something but not another, you can do this by prepending _not_ to the things you don't want. For example, to get the Thai names that are in Thai script and not romanised:
145
+
146
+ choice = RandomPerson::Choice.new
147
+ choice.add_Thai_notRomanised
148
+
149
+ or
150
+
151
+ choice.add_Thai_notRomanised_notFemale
152
+
153
+ to also get rid of the female names.
154
+
155
+ This is an experimental thing. Seems to work, but may change. You cannot do this (at the moment)
156
+
157
+ choice.notRomanised_add_Thai
158
+
159
+ *Always begin with add_*
141
160
 
142
161
  ==RATIOS VS ODDS
143
162
 
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'echoe'
5
5
  lib_dir = File.expand_path('lib')
6
6
  test_dir = File.expand_path('t')
7
7
 
8
- Echoe.new('randomperson', '0.0.7') do |p|
8
+ Echoe.new('randomperson', '0.0.8') do |p|
9
9
  p.description = "A gem for generating random persons"
10
10
  p.url = "http://github.com/yb66/RandomPerson"
11
11
  p.author = "Iain Barnett"
@@ -33,8 +33,20 @@ module RandomPerson
33
33
  return super( name, *args ) unless name.to_s =~ /^add/
34
34
  words = name.to_s.split( "_" )
35
35
  words.shift #get rid of the "add"
36
+
37
+ #get the negations prepended with "not", then lop it off"
38
+ nots = words.select{ |w| w =~ /^not/ }.map {|s| s[3..-1] }
39
+ #get just the positives
40
+ words.reject! {|w| w =~ /^not/ }
41
+
36
42
  #TODO: check the beginning of each word has an uc letter
37
- cs = words.map { |word| @@available_classes.classify_true(word) }.fold(:&)
43
+
44
+ #get a set of nots
45
+ n = nots.map{|word| @@available_classes.classify_true(word)}.fold(:&)
46
+ #get a set of wanteds
47
+ cs = words.map{|word| @@available_classes.classify_true(word)}.fold(:&)
48
+
49
+ cs = cs - n unless n.nil? #remove nots from wanteds
38
50
 
39
51
  cs.each do |c|
40
52
  require c
@@ -0,0 +1,24 @@
1
+ module RandomPerson
2
+ module Names
3
+
4
+ class FrenchFemaleFirst < Name
5
+
6
+ def initialize
7
+ @formats = {
8
+ :single => ->(n) { n.rand },
9
+ :double_barrelled_hyphenated => ->(n) { n.rand + '-' + n.rand },
10
+ }
11
+
12
+ @formats_ratiod = [ 0..70, 71..99 ]
13
+ setupnames
14
+ end
15
+
16
+ def setupnames
17
+ @names = %w{ Adélaïde Adèle Adrienne Agathe Agnès Aimée Alexandri Alix Alice Amélie Anaï Anastasie Andrée Anne Anou Antoinette Arnaud Astri Audrey Auréli Aurore Bernadett Brigitte Camill Capucine Caroline Catherine Cécile Céline Chanta Charlotte Christell Christian Christine Claire Claude Claudine Clémence Colett Constance Corinn Danielle Denise Diane Dominique Dorothée Édith Éléonore Élisabeth Élise Élodi Émilie Emmanuelle Florence Françoise Frédérique Gabrielle Genevièv Hélène Henriette Hortens Inès Isabelle Jacqueline Jeanne Jeannine Joséphine Josett Julie Juliette Laetitia Laure Laurenc Lorraine Louise Luce Madeleine Mano Marcell Margaux Marguerite Margot Marianne Marie Marine Marthe Martin Marys Mathilde Michèle Monique Nathalie Nath Nicole Noémi Océan Odett Olivie Patricia Paulett Pauline Pénélope Philippin Renée Sabin Simon Sophie Stéphanie Susanne Sylvie Thérèse Valentine Valérie Véronique Victoire Virginie Zoé }
18
+ end
19
+ end
20
+ end
21
+ end
22
+
23
+
24
+
@@ -0,0 +1,22 @@
1
+ module RandomPerson
2
+ module Names
3
+
4
+ class FrenchLast < Name
5
+
6
+ def initialize
7
+ @formats = {
8
+ :single => ->(n) { n.rand },
9
+ :double_barrelled_hyphenated => ->(n) { n.rand + '-' + n.rand },
10
+ }
11
+
12
+ @formats_ratiod = [ (0..96), (97..99) ]
13
+ setupnames
14
+ end
15
+
16
+ def setupnames
17
+ @names = %w{ Martin Bernard Thomas Petit Robert Richard Durand Dubois Moreau Laurent Simon Michel Lefebvre Leroy Roux David Bertrand Morel Fournier Girard Bonnet Dupont Lambert Fontaine Rousseau Vincent Muller Lefevre Faure Andre Mercier Blanc Guerin Boyer Garnier Chevalier Francois Legrand Gauthier Garcia Perrin Robin Clement Morin Nicolas Henry Roussel Mathieu Gautier Masson Marchand Duval Denis Dumont Marie Lemaire Noel Meyer Dufour Meunier Brun Blanchard Giraud Joly Riviere Lucas Brunet Gaillard Barbier Arnaud Martinez Gerard Roche Renard Schmitt Roy Leroux Colin Vidal Caron Picard Roger Fabre Aubert Lemoine Renaud Dumas Lacroix Olivier Philippe Bourgeois Pierre Benoit Rey Leclerc Payet Rolland Leclercq Guillaume Lecomte Lopez Jean Dupuy Guillot Hubert Berger Carpentier Sanchez Dupuis Moulin Louis Deschamps Huet Vasseur Perez Boucher Fleury Royer Klein Jacquet Adam Paris Poirier Marty Aubry Guyot Carre Charles Renault Charpentier Menard Maillard Baron Bertin Bailly Herve Schneider Fernandez Le Gall Collet Leger Bouvier Julien Prevost Millet Perrot Daniel Le Roux Cousin Germain Breton Besson Langlois Remy Le Goff Pelletier Leveque Perrier Leblanc Barre Lebrun Marchal Weber Mallet Hamon Boulanger Jacob Monnier Michaud Rodriguez Guichard Gillet Etienne Grondin Poulain Tessier Chevallier Collin Chauvin Da Silva Bouchet Gay Lemaitre Benard Marechal Humbert Reynaud Antoine Hoarau Perret Barthelemy Cordier Pichon Lejeune Gilbert Lamy Delaunay Pasquier Carlier Laporte Gros Buisson Ollivier Briand Alexandre Georges Guillou Besnard Legros Gonzalez Coulon Maillot Albert Camus Delattre Launay Hebert Lesage Blanchet Didier Voisin Pons Bousquet Coste Vallee Jacques Martel Maury Raynaud Barbe Pascal Bigot Verdier Charrier Sauvage Guillet Mahe Leduc Lelievre Gregoire Joubert Masse Delmas Morvan Lebreton Tanguy Pineau Lebon Gaudin Colas Imbert Paul Raymond Guillon Brunel Regnier Ferrand Hardy Devaux Courtois Bodin Chauvet Allard Blondel Laine Delorme Seguin Lenoir Berthelot Bonneau Pereira Thibault Lacombe Riou Lagarde Clerc Bruneau Godard Vaillant Couturier Gomez Jourdan Pages Valentin Lombard Mary Blin Texier Rossi Marion Allain Maurice Guilbert Baudry Dupre Marin Evrard Hoareau Turpin Bourdon Lefort Legendre Chartier Gilles Lacoste Loiseau Duhamel Laroche Ferreira Rousset Toussaint Wagner Fischer Normand Maillet Guibert Labbe Bazin Rocher Bonnin Merle Jacquot Grenier Valette Leconte Peltier Pruvost Auger Vallet Pottier Descamps Parent Boutin Potier Chauveau Martineau Hernandez Neveu Peron Delahaye Vial Blot Delage Lemonnier Petitjean Maurin Rodrigues Cros Lafon Faivre Chretien Fouquet Serre Favre Becker Foucher Guyon Joseph Mace Dos Santos Gallet Charbonnier Bouvet Salmon Le Corre Fernandes Bernier Rossignol Delannoy Levy Prigent Lecoq Thierry Cornu Girault Jourdain Begue Andrieu Maurel Ruiz Parmentier Guy Laborde Gras Goncalves Castel Gervais Boulay Chapuis Samson Duclos Dijoux Chambon Stephan Sabatier Poncet Besse Weiss Doucet Bonhomme Hamel Berthier Letellier Prevot Grand Grandjean Benoist Leblond Gosselin Leleu Comte Favier Bellanger Martinet Billard Rault Geoffroy Forestier Blondeau Roques Ricard Pommier Boulet Drouet Poisson Maire Mounier Gueguen Combes Huguet Morand Leonard Ledoux Prat Dubreuil Fortin Ferre Rigaud Brossard Picot Granger Merlin Laval Claude Marquet Mouton Brault Jeanne Marc Levasseur Le Roy Guillemin Bocquet Constant Pujol Lavigne Bauer Hoffmann Chatelain Lacour Jung Jamet Lallemand Walter Basset Provost Salaun Tellier Gibert Martins Rose Navarro Grange Lepage Bouquet Keller Techer Jolly Tournier Guillard Papin Bataille Lelong Cartier Leon Champion Dujardin Dumoulin Lasserre Flament Husson Schmidt Le Bihan Kieffer Millot Le Guen Ferry Bourdin Mangin Gicquel Cadet Soulier Mignot Barret Bureau Leray Fort Barreau Mas Lafont Bouchard Jolivet Savary Foulon Guillemot Costa Armand Blaise Binet Montagne }
18
+ end
19
+ end
20
+ end
21
+ end
22
+
@@ -0,0 +1,25 @@
1
+ module RandomPerson
2
+ module Names
3
+
4
+ class FrenchMaleFirst < Name
5
+
6
+ def initialize
7
+ @formats = {
8
+ :single => ->(n) { n.rand },
9
+ :double_barrelled_hyphenated => ->(n) { n.rand + '-' + n.rand },
10
+ }
11
+
12
+ @formats_ratiod = [ 0..70, 71..99 ]
13
+ setupnames
14
+ end
15
+
16
+ def setupnames
17
+ @names = %w{ Adrien Aimé Alain Alexandre Alexi Alfred Alphonse Amaur André Antoine Anto Arnau Arthur Auguste Augustin Benjamin Benoît Bernard Bertrand Brun Charles Christia Christophe Claude Cyrille Daniel David Denis Didie Dominique Édouard Émile Emmanuel Éric Étienne Eugène Francis François Franck Frédéric Gabriel Gasto Georges Gérard Gilbert Gilles Grégoire Guillaume Guy Gustav Henri Honoré Hugues Isaac Jacques Jacquot Jean Jeannot Jérôme Joseph Jules Julien Laurent Léon Louis Luc Lucas Marc Marcel Martin Matthieu Maurice Michel Nicolas Noël Olivier Pasca Patrick Patrice Paul Philippe Pierre Raymond Rémy René Richard Robert Roger Roland Sébastien Serg Stéphane Théodore Théophile Thibaut Thierry Thomas Timothée Tristan Victor Vincent Xavier Yves Zacharie }
18
+ end
19
+ end
20
+ end
21
+ end
22
+
23
+
24
+
25
+
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+
3
+ module RandomPerson
4
+ module Names
5
+
6
+ class ThaiFemaleFirst < Name
7
+
8
+ def initialize
9
+ @formats = {
10
+ :single => ->(n) { n.rand },
11
+ }
12
+
13
+ @formats_ratiod = [ (0..99)]
14
+ setupnames
15
+ end
16
+
17
+
18
+ def setupnames
19
+ @names = %w{ สิริกิติ์ กานดา แก้วเก้า ขจี ขวัญใจ ชนิภรณ์ ฐิติภรณ์ ณี ดวงกมล เดือนเพ็ญ นงนุช นภสร นริศา นัยนา นาก นีราชา บุญศรี บุษราคัม พรพรรณ พรพันธ์ พรพันธุ์ พรรณี อมรรัตน์ อุบล หทัย หนิว สุริยา สุรี ศศิธร ศิริพร ศิริวรรณ สมร สังวาล สายสมร สุดา สุนีย์ รัตน์ รินรดา รื่นฤดี ฤดี ฤทัย ภรณ์พรรณ ภรณ์พันธ์ ภรณ์พันธุ์ มณี มาลี กนกพร กมล กฤษฏิ์ กาญจนา กุญชนิตา กุมโชค กุลพันธ์ เกษม ขนิษฐา ขวัญจิต จันทร์สิริ จารุวรรณ จุลภาส เจือ ฉลวย เฉลิม ชนะ ชนินทร์ คลัง จตุพล ชมเกดุ ชวน ชัยพร ชาติชาย ชิด ชุ่ม ชูวิทย์ เซติยัง เซติอาวัน ญาณิน ฐิตวรรณ ณรงค์ศักดิ์ ณัฎฐา ณัฐิมา ดวงใจ แดง ตนุพล ถนัด ถวิล ทวีฉัตร ทวีป ทวีวงศ์ ทวีศักดิ์ ทักษิณ ทัศนีย์ ธงชัย ธนากร ธีรภัทร ธีรศักดิ์ นงลักษณ์ นพรัตน์ นฤมล นาค นิตยา เนาวรัตน์ บัญญัติ บัณฑิตา บุญยง บุญเยี่ยม บุญรัตน์ บุศวรรณ ปฏิภาณ ปฐม ประชา ประดิษฐ์ ประทีป ประทุม ประภาส ประมนต์ ประมุข ประวิตร ประเวช ประเวศ ประสาน ปรัชญา ปราณี ปริญญา ป้อง ปานใจ ปานเทพ ปาริชาติ ปิยบุตร ปิยวรรณ ปิยะคม ปีย์รติ ผ่องเพ็ญ ผาณิต เผด็จ พนม พยนต์ พรชัย พรรัมภา พลเดช พัชรพร พัฒนา พาณิชย์ พาที พิจิตร พิชิต พินิจ พิภพ พิมพ์ใจ พิมพ์วสี พิริยะ พูนศักดิ์ เพ็ญสุขภรณ์ เพิ่ม ไพฑูรย์ ไพบูลย์ ไพรัช ไพศักดิ์ ไพศาล ภานุพัฒน์ ภาสุระ ภิรมย์ ภุชงค์ ภูมินทร์ ภูมิพัฒน์ มงคล มนตรี มโน มานิจ มานิตย์ มารวย มุกดา ยิ่งยศ ยุพิน ยุวรัตน์ รื่น รุ่งสิทธิ์ วรพร วรภัทร วราภรณ์ วัชราภรณ์ วัฒนา วัลลภ วัลลภา วิจารณ์ วิจิตร วิเชียร วิทยา วิโรจน์ วิลาศ วิเศษ วีรยุทธ์ วีรศักดิ์ วีระชาติ วีระชาย วีระพล วีระพันธุ์ วีระศักดิ์ ศรีศักดิ์ ศักดา ศักดิ์ทิพย์ ศิริโชค ศิริณี ศิริพงศ์ ศิริพล ศิริรัตน์ ศุภผล ศุภรัตน์ ศุภวิทย์ สกุล สนั่น สนิท สมควร สมคิด สมชาย สมโชค สมทรง สมบัติ สมบุญ สมพงษ์ สมพร สมเพียร สมภพ สมยศ สมรัตน์ สมลักษณ์ สมศรี สมศักดิ์ สมหมาย สมัคร สริตา สลิลธร สวัสดิ์ สว่าง สันติ สากล สาธิต สาธิตยัง สามารถ สายพิณ สาวิทย์ สิงห์ สิทธิ สิริรักษ์ สีห์ศักดิ์ สุกัญญา สุจิต สุจินดา สุชาดา สุชาดาจะ สุชาติ สุชาย สุทธิพงศ์ สุทธิพล สุเทพ สุธรรม สุนทรี สุนัย สุนี สุประภา สุพรรณ สุพิชา สุภาพ สุภาภรณ์ สุรัตน์ สุริยะ สุวรรณ สุวิชา สุหัตถ์ เสรี อดิศักดิ์ อนันต์ อภิชาต อภิชาติ อภิญญา อภิรักษ์ อภิศักดิ์ อริศรา อรุณศรี อัญญาณี อัษรา อาณัติ อารง อารีพงศ์ อุบลวรรณ เอกพงษ์ เอกใหม่ }
20
+ end
21
+
22
+ end
23
+ end
24
+ end
25
+
26
+
27
+
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+
3
+ module RandomPerson
4
+ module Names
5
+
6
+ class ThaiLast < Name
7
+
8
+ def initialize
9
+ @formats = {
10
+ :single => ->(n) { n.rand },
11
+ }
12
+
13
+ @formats_ratiod = [ (0..99)]
14
+ setupnames
15
+ end
16
+
17
+
18
+ def setupnames
19
+ @names = %w{ ธงไชย อิงลิช พูนลาภ โลโซ เจริญปุระ อรทัย ชินวัตร สยาม เวชชาชีวะ สะเมิง ปาย ฝาง สารภี อมก๋อย เทิง งาว เถิน สงขลา ชลบุรี นราธิวาส ยะลา ปัตตานี ระนอง พะเยา ลำปาง ลำพูน อุตรดิตถ์ พิษณุโลก เลย เพชรบูรณ์ ชัยภูมิ ลพบุรี โคราช สระบุรี นนทบุรี พิจิตร สุโขทัย ตาก กาญจนบุรี ราชบุรี แพร่ มุกดาหาร ยโสธร ศรีสะเกษ สุรินทร์ บุรีรัมย์ เพชรบุรี กาฬสินธุ์ บุรีรัมย์ ศรีอยุธยา สวรรค์ ปฐม นายก ปราการ สาคร สงคราม พัทลุง สตูล ตรัง กระบี่ ชุมพร ตราด ฉะเชิงเทรา สกล พนม }
20
+ end
21
+
22
+ end
23
+
24
+ end
25
+ end
26
+
27
+
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+
3
+ module RandomPerson
4
+ module Names
5
+
6
+ class ThaiMaleFirst < Name
7
+
8
+ def initialize
9
+ @formats = {
10
+ :single => ->(n) { n.rand },
11
+ }
12
+
13
+ @formats_ratiod = [ (0..99)]
14
+ setupnames
15
+ end
16
+
17
+
18
+ def setupnames
19
+ @names = %w{ นพคุณ กระสินธ์ กล้าหาญ ขวัญชัย จักรี ชัยอนันต์ ชาญชัย ชาติ เชาวน์ ดุสิต ธเนศ ยุทธ์ มนู มณู ประสิทธิ ประวิทย์ ประเสริฐ ปรีชา พนิต ราม วันพล วิชัย วิรัช วิริยะ วิศิษฏ์ ศิริ ศุภชัย สนธิ สมบูรณ์ สุพิศ สุเมธ สุวิทย์ อนันตชัย อัษฎา อาทิตย์ อุกิต อุดม วินัย เปรม ปัญญา ประสงค์ อักขระ อภิสิทธิ์ อนุชา รอง ศุภวุฒิ วีระ กนกพร กมล กฤษฏิ์ กาญจนา กุญชนิตา กุมโชค กุลพันธ์ เกษม ขนิษฐา ขวัญจิต จันทร์สิริ จารุวรรณ จุลภาส เจือ ฉลวย เฉลิม ชนะ ชนินทร์ คลัง จตุพล ชมเกดุ ชวน ชัยพร ชาติชาย ชิด ชุ่ม ชูวิทย์ เซติยัง เซติอาวัน ญาณิน ฐิตวรรณ ณรงค์ศักดิ์ ณัฎฐา ณัฐิมา ดวงใจ แดง ตนุพล ถนัด ถวิล ทวีฉัตร ทวีป ทวีวงศ์ ทวีศักดิ์ ทักษิณ ทัศนีย์ ธงชัย ธนากร ธีรภัทร ธีรศักดิ์ นงลักษณ์ นพรัตน์ นฤมล นาค นิตยา เนาวรัตน์ บัญญัติ บัณฑิตา บุญยง บุญเยี่ยม บุญรัตน์ บุศวรรณ ปฏิภาณ ปฐม ประชา ประดิษฐ์ ประทีป ประทุม ประภาส ประมนต์ ประมุข ประวิตร ประเวช ประเวศ ประสาน ปรัชญา ปราณี ปริญญา ป้อง ปานใจ ปานเทพ ปาริชาติ ปิยบุตร ปิยวรรณ ปิยะคม ปีย์รติ ผ่องเพ็ญ ผาณิต เผด็จ พนม พยนต์ พรชัย พรรัมภา พลเดช พัชรพร พัฒนา พาณิชย์ พาที พิจิตร พิชิต พินิจ พิภพ พิมพ์ใจ พิมพ์วสี พิริยะ พูนศักดิ์ เพ็ญสุขภรณ์ เพิ่ม ไพฑูรย์ ไพบูลย์ ไพรัช ไพศักดิ์ ไพศาล ภานุพัฒน์ ภาสุระ ภิรมย์ ภุชงค์ ภูมินทร์ ภูมิพัฒน์ มงคล มนตรี มโน มานิจ มานิตย์ มารวย มุกดา ยิ่งยศ ยุพิน ยุวรัตน์ รื่น รุ่งสิทธิ์ วรพร วรภัทร วราภรณ์ วัชราภรณ์ วัฒนา วัลลภ วัลลภา วิจารณ์ วิจิตร วิเชียร วิทยา วิโรจน์ วิลาศ วิเศษ วีรยุทธ์ วีรศักดิ์ วีระชาติ วีระชาย วีระพล วีระพันธุ์ วีระศักดิ์ ศรีศักดิ์ ศักดา ศักดิ์ทิพย์ ศิริโชค ศิริณี ศิริพงศ์ ศิริพล ศิริรัตน์ ศุภผล ศุภรัตน์ ศุภวิทย์ สกุล สนั่น สนิท สมควร สมคิด สมชาย สมโชค สมทรง สมบัติ สมบุญ สมพงษ์ สมพร สมเพียร สมภพ สมยศ สมรัตน์ สมลักษณ์ สมศรี สมศักดิ์ สมหมาย สมัคร สริตา สลิลธร สวัสดิ์ สว่าง สันติ สากล สาธิต สาธิตยัง สามารถ สายพิณ สาวิทย์ สิงห์ สิทธิ สิริรักษ์ สีห์ศักดิ์ สุกัญญา สุจิต สุจินดา สุชาดา สุชาดาจะ สุชาติ สุชาย สุทธิพงศ์ สุทธิพล สุเทพ สุธรรม สุนทรี สุนัย สุนี สุประภา สุพรรณ สุพิชา สุภาพ สุภาภรณ์ สุรัตน์ สุริยะ สุวรรณ สุวิชา สุหัตถ์ เสรี อดิศักดิ์ อนันต์ อภิชาต อภิชาติ อภิญญา อภิรักษ์ อภิศักดิ์ อริศรา อรุณศรี อัญญาณี อัษรา อาณัติ อารง อารีพงศ์ อุบลวรรณ เอกพงษ์ เอกใหม่ }
20
+ end
21
+
22
+ end
23
+ end
24
+ end
25
+
data/randomperson.gemspec CHANGED
@@ -2,16 +2,16 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{randomperson}
5
- s.version = "0.0.7"
5
+ s.version = "0.0.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Iain Barnett"]
9
9
  s.cert_chain = ["/Users/iainuser/.ssh/gem-public_cert.pem"]
10
- s.date = %q{2010-08-25}
10
+ s.date = %q{2010-08-26}
11
11
  s.description = %q{A gem for generating random persons}
12
12
  s.email = %q{iainspeed @nospam@ gmail.com}
13
- s.extra_rdoc_files = ["CHANGELOG", "README", "lib/randomperson.rb", "lib/randomperson/Choice.rb", "lib/randomperson/Generator.rb", "lib/randomperson/Name.rb", "lib/randomperson/Names/AmericanFemaleFirst.rb", "lib/randomperson/Names/AmericanLast.rb", "lib/randomperson/Names/AmericanMaleFirst.rb", "lib/randomperson/Names/AmericanSuffix.rb", "lib/randomperson/Names/AncientGreekFemaleFirst.rb", "lib/randomperson/Names/AncientGreekLast.rb", "lib/randomperson/Names/AncientGreekMaleFirst.rb", "lib/randomperson/Names/AnyLast.rb", "lib/randomperson/Names/BasqueFemaleFirst.rb", "lib/randomperson/Names/BasqueLast.rb", "lib/randomperson/Names/BasqueMaleFirst.rb", "lib/randomperson/Names/BritishPrefix.rb", "lib/randomperson/Names/BritishSuffix.rb", "lib/randomperson/Names/EnglishFemaleFirst.rb", "lib/randomperson/Names/EnglishLast.rb", "lib/randomperson/Names/EnglishMaleFirst.rb", "lib/randomperson/Names/ScottishFemaleFirst.rb", "lib/randomperson/Names/ScottishLast.rb", "lib/randomperson/Names/ScottishMaleFirst.rb", "lib/randomperson/Names/SpanishFemaleFirst.rb", "lib/randomperson/Names/SpanishLast.rb", "lib/randomperson/Names/SpanishMaleFirst.rb", "lib/randomperson/Names/SwedishFemaleFirst.rb", "lib/randomperson/Names/SwedishLast.rb", "lib/randomperson/Names/SwedishMaleFirst.rb", "lib/randomperson/Names/ThaiFirst.rb", "lib/randomperson/Names/ThaiRomanisedFemaleFirst.rb", "lib/randomperson/Names/ThaiRomanisedLast.rb", "lib/randomperson/Names/ThaiRomanisedMaleFirst.rb", "lib/randomperson/Names/WelshFemaleFirst.rb", "lib/randomperson/Names/WelshLast.rb", "lib/randomperson/Names/WelshMaleFirst.rb", "lib/randomperson/Person.rb", "lib/randomperson/Ratio.rb", "lib/randomperson/ext/Array.rb", "lib/randomperson/ext/Date.rb", "lib/randomperson/ext/Enumerable.rb", "lib/randomperson/ext/Hash.rb", "lib/randomperson/ext/Kernel.rb", "lib/randomperson/ext/Set.rb"]
14
- s.files = ["CHANGELOG", "Manifest", "README", "Rakefile", "gem-public_cert.pem", "lib/randomperson.rb", "lib/randomperson/Choice.rb", "lib/randomperson/Generator.rb", "lib/randomperson/Name.rb", "lib/randomperson/Names/AmericanFemaleFirst.rb", "lib/randomperson/Names/AmericanLast.rb", "lib/randomperson/Names/AmericanMaleFirst.rb", "lib/randomperson/Names/AmericanSuffix.rb", "lib/randomperson/Names/AncientGreekFemaleFirst.rb", "lib/randomperson/Names/AncientGreekLast.rb", "lib/randomperson/Names/AncientGreekMaleFirst.rb", "lib/randomperson/Names/AnyLast.rb", "lib/randomperson/Names/BasqueFemaleFirst.rb", "lib/randomperson/Names/BasqueLast.rb", "lib/randomperson/Names/BasqueMaleFirst.rb", "lib/randomperson/Names/BritishPrefix.rb", "lib/randomperson/Names/BritishSuffix.rb", "lib/randomperson/Names/EnglishFemaleFirst.rb", "lib/randomperson/Names/EnglishLast.rb", "lib/randomperson/Names/EnglishMaleFirst.rb", "lib/randomperson/Names/ScottishFemaleFirst.rb", "lib/randomperson/Names/ScottishLast.rb", "lib/randomperson/Names/ScottishMaleFirst.rb", "lib/randomperson/Names/SpanishFemaleFirst.rb", "lib/randomperson/Names/SpanishLast.rb", "lib/randomperson/Names/SpanishMaleFirst.rb", "lib/randomperson/Names/SwedishFemaleFirst.rb", "lib/randomperson/Names/SwedishLast.rb", "lib/randomperson/Names/SwedishMaleFirst.rb", "lib/randomperson/Names/ThaiFirst.rb", "lib/randomperson/Names/ThaiRomanisedFemaleFirst.rb", "lib/randomperson/Names/ThaiRomanisedLast.rb", "lib/randomperson/Names/ThaiRomanisedMaleFirst.rb", "lib/randomperson/Names/WelshFemaleFirst.rb", "lib/randomperson/Names/WelshLast.rb", "lib/randomperson/Names/WelshMaleFirst.rb", "lib/randomperson/Person.rb", "lib/randomperson/Ratio.rb", "lib/randomperson/ext/Array.rb", "lib/randomperson/ext/Date.rb", "lib/randomperson/ext/Enumerable.rb", "lib/randomperson/ext/Hash.rb", "lib/randomperson/ext/Kernel.rb", "lib/randomperson/ext/Set.rb", "t/Generator.t", "randomperson.gemspec"]
13
+ s.extra_rdoc_files = ["CHANGELOG", "README", "lib/randomperson.rb", "lib/randomperson/Choice.rb", "lib/randomperson/Generator.rb", "lib/randomperson/Name.rb", "lib/randomperson/Names/AmericanFemaleFirst.rb", "lib/randomperson/Names/AmericanLast.rb", "lib/randomperson/Names/AmericanMaleFirst.rb", "lib/randomperson/Names/AmericanSuffix.rb", "lib/randomperson/Names/AncientGreekFemaleFirst.rb", "lib/randomperson/Names/AncientGreekLast.rb", "lib/randomperson/Names/AncientGreekMaleFirst.rb", "lib/randomperson/Names/AnyLast.rb", "lib/randomperson/Names/BasqueFemaleFirst.rb", "lib/randomperson/Names/BasqueLast.rb", "lib/randomperson/Names/BasqueMaleFirst.rb", "lib/randomperson/Names/BritishPrefix.rb", "lib/randomperson/Names/BritishSuffix.rb", "lib/randomperson/Names/EnglishFemaleFirst.rb", "lib/randomperson/Names/EnglishLast.rb", "lib/randomperson/Names/EnglishMaleFirst.rb", "lib/randomperson/Names/FrenchFemaleFirst.rb", "lib/randomperson/Names/FrenchLast.rb", "lib/randomperson/Names/FrenchMaleFirst.rb", "lib/randomperson/Names/ScottishFemaleFirst.rb", "lib/randomperson/Names/ScottishLast.rb", "lib/randomperson/Names/ScottishMaleFirst.rb", "lib/randomperson/Names/SpanishFemaleFirst.rb", "lib/randomperson/Names/SpanishLast.rb", "lib/randomperson/Names/SpanishMaleFirst.rb", "lib/randomperson/Names/SwedishFemaleFirst.rb", "lib/randomperson/Names/SwedishLast.rb", "lib/randomperson/Names/SwedishMaleFirst.rb", "lib/randomperson/Names/ThaiFemaleFirst.rb", "lib/randomperson/Names/ThaiFirst.rb", "lib/randomperson/Names/ThaiLast.rb", "lib/randomperson/Names/ThaiMaleFirst.rb", "lib/randomperson/Names/ThaiRomanisedFemaleFirst.rb", "lib/randomperson/Names/ThaiRomanisedLast.rb", "lib/randomperson/Names/ThaiRomanisedMaleFirst.rb", "lib/randomperson/Names/WelshFemaleFirst.rb", "lib/randomperson/Names/WelshLast.rb", "lib/randomperson/Names/WelshMaleFirst.rb", "lib/randomperson/Person.rb", "lib/randomperson/Ratio.rb", "lib/randomperson/ext/Array.rb", "lib/randomperson/ext/Date.rb", "lib/randomperson/ext/Enumerable.rb", "lib/randomperson/ext/Hash.rb", "lib/randomperson/ext/Kernel.rb", "lib/randomperson/ext/Set.rb"]
14
+ s.files = ["CHANGELOG", "Manifest", "README", "Rakefile", "gem-public_cert.pem", "lib/randomperson.rb", "lib/randomperson/Choice.rb", "lib/randomperson/Generator.rb", "lib/randomperson/Name.rb", "lib/randomperson/Names/AmericanFemaleFirst.rb", "lib/randomperson/Names/AmericanLast.rb", "lib/randomperson/Names/AmericanMaleFirst.rb", "lib/randomperson/Names/AmericanSuffix.rb", "lib/randomperson/Names/AncientGreekFemaleFirst.rb", "lib/randomperson/Names/AncientGreekLast.rb", "lib/randomperson/Names/AncientGreekMaleFirst.rb", "lib/randomperson/Names/AnyLast.rb", "lib/randomperson/Names/BasqueFemaleFirst.rb", "lib/randomperson/Names/BasqueLast.rb", "lib/randomperson/Names/BasqueMaleFirst.rb", "lib/randomperson/Names/BritishPrefix.rb", "lib/randomperson/Names/BritishSuffix.rb", "lib/randomperson/Names/EnglishFemaleFirst.rb", "lib/randomperson/Names/EnglishLast.rb", "lib/randomperson/Names/EnglishMaleFirst.rb", "lib/randomperson/Names/FrenchFemaleFirst.rb", "lib/randomperson/Names/FrenchLast.rb", "lib/randomperson/Names/FrenchMaleFirst.rb", "lib/randomperson/Names/ScottishFemaleFirst.rb", "lib/randomperson/Names/ScottishLast.rb", "lib/randomperson/Names/ScottishMaleFirst.rb", "lib/randomperson/Names/SpanishFemaleFirst.rb", "lib/randomperson/Names/SpanishLast.rb", "lib/randomperson/Names/SpanishMaleFirst.rb", "lib/randomperson/Names/SwedishFemaleFirst.rb", "lib/randomperson/Names/SwedishLast.rb", "lib/randomperson/Names/SwedishMaleFirst.rb", "lib/randomperson/Names/ThaiFemaleFirst.rb", "lib/randomperson/Names/ThaiFirst.rb", "lib/randomperson/Names/ThaiLast.rb", "lib/randomperson/Names/ThaiMaleFirst.rb", "lib/randomperson/Names/ThaiRomanisedFemaleFirst.rb", "lib/randomperson/Names/ThaiRomanisedLast.rb", "lib/randomperson/Names/ThaiRomanisedMaleFirst.rb", "lib/randomperson/Names/WelshFemaleFirst.rb", "lib/randomperson/Names/WelshLast.rb", "lib/randomperson/Names/WelshMaleFirst.rb", "lib/randomperson/Person.rb", "lib/randomperson/Ratio.rb", "lib/randomperson/ext/Array.rb", "lib/randomperson/ext/Date.rb", "lib/randomperson/ext/Enumerable.rb", "lib/randomperson/ext/Hash.rb", "lib/randomperson/ext/Kernel.rb", "lib/randomperson/ext/Set.rb", "t/Generator.t", "randomperson.gemspec"]
15
15
  s.homepage = %q{http://github.com/yb66/RandomPerson}
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Randomperson", "--main", "README"]
17
17
  s.require_paths = ["lib"]
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 7
9
- version: 0.0.7
8
+ - 8
9
+ version: 0.0.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Iain Barnett
@@ -35,7 +35,7 @@ cert_chain:
35
35
  YK13fiGcldY=
36
36
  -----END CERTIFICATE-----
37
37
 
38
- date: 2010-08-25 00:00:00 +01:00
38
+ date: 2010-08-26 00:00:00 +01:00
39
39
  default_executable:
40
40
  dependencies: []
41
41
 
@@ -68,6 +68,9 @@ extra_rdoc_files:
68
68
  - lib/randomperson/Names/EnglishFemaleFirst.rb
69
69
  - lib/randomperson/Names/EnglishLast.rb
70
70
  - lib/randomperson/Names/EnglishMaleFirst.rb
71
+ - lib/randomperson/Names/FrenchFemaleFirst.rb
72
+ - lib/randomperson/Names/FrenchLast.rb
73
+ - lib/randomperson/Names/FrenchMaleFirst.rb
71
74
  - lib/randomperson/Names/ScottishFemaleFirst.rb
72
75
  - lib/randomperson/Names/ScottishLast.rb
73
76
  - lib/randomperson/Names/ScottishMaleFirst.rb
@@ -77,7 +80,10 @@ extra_rdoc_files:
77
80
  - lib/randomperson/Names/SwedishFemaleFirst.rb
78
81
  - lib/randomperson/Names/SwedishLast.rb
79
82
  - lib/randomperson/Names/SwedishMaleFirst.rb
83
+ - lib/randomperson/Names/ThaiFemaleFirst.rb
80
84
  - lib/randomperson/Names/ThaiFirst.rb
85
+ - lib/randomperson/Names/ThaiLast.rb
86
+ - lib/randomperson/Names/ThaiMaleFirst.rb
81
87
  - lib/randomperson/Names/ThaiRomanisedFemaleFirst.rb
82
88
  - lib/randomperson/Names/ThaiRomanisedLast.rb
83
89
  - lib/randomperson/Names/ThaiRomanisedMaleFirst.rb
@@ -118,6 +124,9 @@ files:
118
124
  - lib/randomperson/Names/EnglishFemaleFirst.rb
119
125
  - lib/randomperson/Names/EnglishLast.rb
120
126
  - lib/randomperson/Names/EnglishMaleFirst.rb
127
+ - lib/randomperson/Names/FrenchFemaleFirst.rb
128
+ - lib/randomperson/Names/FrenchLast.rb
129
+ - lib/randomperson/Names/FrenchMaleFirst.rb
121
130
  - lib/randomperson/Names/ScottishFemaleFirst.rb
122
131
  - lib/randomperson/Names/ScottishLast.rb
123
132
  - lib/randomperson/Names/ScottishMaleFirst.rb
@@ -127,7 +136,10 @@ files:
127
136
  - lib/randomperson/Names/SwedishFemaleFirst.rb
128
137
  - lib/randomperson/Names/SwedishLast.rb
129
138
  - lib/randomperson/Names/SwedishMaleFirst.rb
139
+ - lib/randomperson/Names/ThaiFemaleFirst.rb
130
140
  - lib/randomperson/Names/ThaiFirst.rb
141
+ - lib/randomperson/Names/ThaiLast.rb
142
+ - lib/randomperson/Names/ThaiMaleFirst.rb
131
143
  - lib/randomperson/Names/ThaiRomanisedFemaleFirst.rb
132
144
  - lib/randomperson/Names/ThaiRomanisedLast.rb
133
145
  - lib/randomperson/Names/ThaiRomanisedMaleFirst.rb
metadata.gz.sig CHANGED
@@ -1,2 +1 @@
1
- q"������H�ؼ˜/�#�H�����s��f����L����[��-�Z�*�������?��N��lW���_��z���(b9��������(7�]Bm�4� �[H�'�?�7r����pp���K�^��+�N^��\u� �=̂e�<�%����0�\���XMPH�=���]���.B� �҈��=�����p���*Z�-@���~���a��Y
2
- ��ې��'eΥ�����|�>6�=�X�J�/
1
+ |r�"�����d\R��B��B��>��}���vg��b)��]M�����Hd���u��#�&?y,�hu���@