Stop::Words
Simple set of stop words based on ranks.nl's list.
Installation
Add this line to your application's Gemfile:
gem 'stop-words'
And then execute:
$ bundle
Or install it yourself as:
$ gem install stop-words
Usage
Get the default list of stop words using:
Stop::Words.default
Get mysql's list of stop words using:
Stop::Words.mysql
Get a longer list of keywords using:
Stop::Words.long
Contributing
- Fork it
- 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 new Pull Request