Skip to content

Instantly share code, notes, and snippets.

@1dolinski
Created April 12, 2013 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1dolinski/5373615 to your computer and use it in GitHub Desktop.
Save 1dolinski/5373615 to your computer and use it in GitHub Desktop.
require 'string_score/ext/string'
"JAMES DOWNY".downcase.score("Downy, James".downcase)
#=> 0
"JAMES DOWNY".downcase.score("James Downy".downcase)
#=> 1
"JAMES DOWNY".downcase.score("James, Downy".downcase)
# w the comma
#=> 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment