Sha256: f529370c0507bccb4197b9ed1365f1f32efce1a1a386453966100390abd24ce8
Contents?: true
Size: 525 Bytes
Versions: 107
Compression:
Stored size: 525 Bytes
Contents
module Picky # encoding: utf-8 # module Generators module Similarity # It's actually a combination of double metaphone # and Levenshtein. # # It uses the double metaphone to get similar words # and ranks them using the levenshtein. # class DoubleMetaphone < Phonetic # Encodes the given string/symbol. # # Returns a symbol. # def encode str_or_sym str_or_sym.double_metaphone end end end end end
Version data entries
107 entries across 107 versions & 1 rubygems