├── .gitignore ├── README.rdoc ├── Rakefile ├── bin └── stem ├── lib └── stemmify.rb ├── stemmify.gemspec └── test ├── input.txt ├── output.txt └── test_stemmify.rb /.gitignore: -------------------------------------------------------------------------------- 1 | rdoc 2 | -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raypereda/stemmify/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raypereda/stemmify/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/stem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raypereda/stemmify/HEAD/bin/stem -------------------------------------------------------------------------------- /lib/stemmify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raypereda/stemmify/HEAD/lib/stemmify.rb -------------------------------------------------------------------------------- /stemmify.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raypereda/stemmify/HEAD/stemmify.gemspec -------------------------------------------------------------------------------- /test/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raypereda/stemmify/HEAD/test/input.txt -------------------------------------------------------------------------------- /test/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raypereda/stemmify/HEAD/test/output.txt -------------------------------------------------------------------------------- /test/test_stemmify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raypereda/stemmify/HEAD/test/test_stemmify.rb --------------------------------------------------------------------------------