Sha256: b089dd174987ba8f2285844b5ea267b704ef77f013c6f8446cc2fd59a1715a8a

Contents?: true

Size: 542 Bytes

Versions: 3

Compression:

Stored size: 542 Bytes

Contents

Fast-stemmer is simply a wrapping around multithreaded
Porter stemming algorithm.

This gem adds a String#stem method, and it conflicts with the stemmer gem.
It's in order of magnitude faster (and uses much less memory) than the latter.

For the original work please see:
http://tartarus.org/~martin/PorterStemmer/

Usage:

  require 'rubygems'
  require 'fast_stemmer'

  Stemmer::stem_word('running') # -> 'run'
  'running'.stem                # -> 'run'


COPYRIGHT
=========

Copyright (c) 2008 Roman Shterenzon. See LICENSE for details.

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
romanbsd-fast-stemmer-1.0.0 README
vanity-1.7.1 vendor/ruby/1.9.1/gems/fast-stemmer-1.0.0/README
fast-stemmer-1.0.0 README