MeCab::Light
Use a sequence of morphemes as an Enumerable object.
Installation
Add this line to your application's Gemfile:
gem 'mecab-light'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mecab-light
Install on Windows:
$ gem install mecab-light -- --with-mecab-folder=C:/MeCab # assign yours
Usage
require 'mecab/light'
tagger = MeCab::Light::Tagger.new('')
string = 'この文を形態素解析してください。'
result = tagger.parse(string)
result.kind_of?(Enumerable) #=> true
result.map(&:surface)
#=> ["この", "文", "を", "形態素", "解析", "し", "て", "ください", "。"]
model = MeCab::Light::Model.new('')
tagger = MeCab::Light::Tagger.new(model)
lattice = MeCab::Light::Lattice.new(model)
lattice.sentence = 'この文を形態素解析してください。'
result = tagger.parse(lattice)
result.map(&:surface)
#=> ["この", "文", "を", "形態素", "解析", "し", "て", "ください", "。"]
MeCab::Light is a lightweight tool. This gem works without the official binding. Note that this supports less methods than those of C API for now.
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