Sha256: 1503ed1d31ba4af28aac9c83937db71111c3f71d644a132cf64085a4764e40be
Contents?: true
Size: 526 Bytes
Versions: 15
Compression:
Stored size: 526 Bytes
Contents
# encoding: utf-8 # module Internals module Generators module Similarity # It's actually a combination of soundex # and Levenshtein. # # It uses the soundex to get similar words # and ranks them using the levenshtein. # class Soundex < Phonetic # Encodes the given symbol. # # Returns a symbol. # def encoded sym code = Text::Soundex.soundex sym.to_s code.to_sym if code end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems