name-tamer 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/doc/prefixes.csv +1 -0
- data/lib/name-tamer.rb +1 -1
- data/lib/name-tamer/version.rb +1 -1
- data/spec/name_tamer_spec.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b36d87910f18fa7c76d0cd870b9b26a871d67d6d
|
|
4
|
+
data.tar.gz: 4271a8ec4e0283404724f38be9e741622ec0b3eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee9ccf0693e843bacfe3fc2a877c0dbf3feaeecfc9f947885c3831a30fe29897ff445b2194e95a67f15607c904d6326081008aabf9e8ba5f73cc235bef805187
|
|
7
|
+
data.tar.gz: 3f1969928051dd1ddf36220b64897301eeab22122fb5b725fd17e800ecb8d69f52c8cf88c2ddf7821fe8f1e03b564044727168c2943440207d514f22f521864a
|
data/Gemfile.lock
CHANGED
data/doc/prefixes.csv
CHANGED
data/lib/name-tamer.rb
CHANGED
|
@@ -456,7 +456,7 @@ class NameTamer
|
|
|
456
456
|
'Doctor', 'Dr.', 'Judge', 'Justice', 'Lady', 'Lieut.', 'Lieutenant',
|
|
457
457
|
'Lord', 'Madame', 'Major', 'Master', 'Matron', 'Messrs.', 'Mgr.',
|
|
458
458
|
'Miss', 'Mister', 'Mlle.', 'Mme.', 'Mons.', 'Mr.', 'Mr. & Mrs.',
|
|
459
|
-
'Mr. and Mrs.', 'Mrs.', 'Msgr.', 'Prof.', 'Professor', 'Rev.',
|
|
459
|
+
'Mr. and Mrs.', 'Mrs.', 'Msgr.', 'Ms.', 'Prof.', 'Professor', 'Rev.',
|
|
460
460
|
'Reverend', 'Sir', 'Sister', 'The Hon.', 'The Lady.', 'The Lord',
|
|
461
461
|
'The Rt. Hon.'
|
|
462
462
|
],
|
data/lib/name-tamer/version.rb
CHANGED
data/spec/name_tamer_spec.rb
CHANGED
|
@@ -125,6 +125,7 @@ describe NameTamer do
|
|
|
125
125
|
{ n:'John Smith', t: 'Person', nn:'John Smith', sn:'John Smith', s:'john-smith' },
|
|
126
126
|
{ n:'John Smith', t: :nonsense, nn:'John Smith', sn:'John Smith', s:'john-smith' },
|
|
127
127
|
{ n:'John Smith', t: Kernel, nn:'John Smith', sn:'John Smith', s:'john-smith' },
|
|
128
|
+
{ n:'Ms Jane Smith', t: :person, nn:'Jane Smith', sn:'Jane Smith', s:'jane-smith' },
|
|
128
129
|
]
|
|
129
130
|
end
|
|
130
131
|
|