Sha256: 39675641fd3f6fcd3b03fce7e093171c989eab785808f8ce1fd3dcf160c2830f
Contents?: true
Size: 573 Bytes
Versions: 3
Compression:
Stored size: 573 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/ Gemfile: gem 'fast-stemmer' 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 & 2 rubygems
Version | Path |
---|---|
scoot-0.0.4 | .bundle/gems/ruby/2.2.0/gems/fast-stemmer-1.0.2/README |
fast-stemmer-1.0.2 | README |
fast-stemmer-1.0.1 | README |