Currently Cadmium only comes with a Porter Stemmer, but Lancaster will be added soon. Stemmer methods stem
and tokenize_and_stem
have also been added to the String class to simplify use.
-
Add the dependency to your
shard.yml
:dependencies: cadmium_stemmer: github: cadmiumcr/stemmer
-
Run
shards install
require "cadmium_stemmer"
"words".stem
# => word
"i am waking up to the sounds of chainsaws".tokenize_and_stem
# => ["wake", "sound", "chainsaw"]
- Fork it (https://github.com/cadmiumcr/stemmer/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Chris Watson - creator and maintainer