gender_detector
gender_detector copied to clipboard
Get gender from first name in Ruby.
I have no idea why, but a handful of names contain whitespace. For example, `Jose Maria`. I think maybe parsing of those names is busted. My speedy parse code might...
Thanks for creating such a great gem! A few suggestions for ya... In my informal testing I can reduce startup time from 800ms to 170ms with the following parse code....
Brazilians speak Portuguese so we should add this as a mapping.
GPL-3.0 instead of MIT
Just an idea, but what if instead of creating a new detector object, you could simply run: ``` ruby GenderDetector.get_gender('Sally') # => :female GenderDetector.female?('Sally') # => true GenderDetector.male?('Sally') # =>...