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: tartarus.org/~martin/PorterStemmer/

WWW:    https://github.com/romanbsd/fast-stemmer
This commit is contained in:
Philip M. Gollucci 2010-12-08 20:03:48 +00:00
parent f584da22ee
commit c918a4fb15
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=265862
4 changed files with 30 additions and 0 deletions

View file

@ -3116,6 +3116,7 @@
SUBDIR += rubygem-eventmachine
SUBDIR += rubygem-extlib
SUBDIR += rubygem-facets
SUBDIR += rubygem-fast-stemmer
SUBDIR += rubygem-fastercsv
SUBDIR += rubygem-fastthread
SUBDIR += rubygem-fattr

View file

@ -0,0 +1,19 @@
# Ports collection makefile for: rubygem-fast-stemmer
# Date created: 2010-12-08
# Whom: Philip M. Gollucci <pgollucci@p6m7g8.com>
#
# $FreeBSD$
PORTNAME= fast-stemmer
PORTVERSION= 1.0.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= ruby@FreeBSD.org
COMMENT= Fast Porter stemmer based on a C version of algorithm
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (rubygem/fast-stemmer-1.0.0.gem) = c30bb85906d60733832ce9549db2673ff44342a65e546dbdfc3744c107fb024c
SIZE (rubygem/fast-stemmer-1.0.0.gem) = 9728

View file

@ -0,0 +1,8 @@
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: tartarus.org/~martin/PorterStemmer/
WWW: https://github.com/romanbsd/fast-stemmer