File: fast_stemmer.rb

package info (click to toggle)
ruby-fast-stemmer 1.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 148 kB
  • sloc: ansic: 281; makefile: 179; ruby: 26
file content (7 lines) | stat: -rw-r--r-- 81 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
require 'stemmer'

class String
  def stem
    Stemmer.stem_word(self)
  end
end