Use a sequence of morphemes as an Enumerable object.
Add this line to your application's Gemfile:
gem 'juman'
And then execute:
$ bundle
Or install it yourself as:
$ gem install juman
require 'juman'
juman = Juman.new
text = 'この文を形態素解析してください。'
result = juman.analyze(text)
result[0].surface #=> "この"
result.map{|morpheme| morpheme.surface }
#=> ["この", "文", "を", "形態", "素", "解析", "して", "ください", "。"]
- 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