gender_detector icon indicating copy to clipboard operation
gender_detector copied to clipboard

Get gender from first name in Ruby.

Results 5 gender_detector issues
Sort by recently updated
recently updated
newest added

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.

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') # =>...