Search code examples
ruby-on-railsrubytaggingstemming

Stemming library/plugin for Ruby on Rails


Looking for a stemming library in Ruby which will allow me to create such mappings as:

maps_to["dogs"] = "dog"
maps_to["puppies"] = "dog"
maps_to["doggies"] = "dog"
etc 

Solution

  • Try this : https://rubygems.org/gems/stemmer4r/

    Stemming may not work the way most people think stemming works though.