Sha256: f1cfd9009114ff78c9dd8abb26a525f6f4134a3b342a55a75e1e90a05969ced3

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

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 Phonetic < Strategy

        attr_reader :amount

        #
        #
        def initialize amount = 10
          check_gem

          raise "In Picky 2.0+, the Similarity::Phonetic has been renamed to Similarity::DoubleMetaphone. Please use that one. Thanks!" if self.class == Phonetic
          @amount = amount
        end

        # Tries to require the text gem.
        #
        def check_gem # :nodoc:
          require 'text'
        rescue LoadError
          warn_gem_missing 'text', 'a phonetic Similarity'
          exit 1
        end

        # Sorts the index values in place.
        #
        def sort ary, code
          ary.sort_by_levenshtein! code
          ary.slice! amount, ary.size # THINK size is not perfectly correct, but anyway
        end

      end

    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
picky-4.0.0pre2 lib/picky/generators/similarity/phonetic.rb