Wakame

Wakame is a Crystal binding for MeCab(Website/Wikipedia), a morphological analyzer written in C++ often used to analyze Japanese texts. Wakame aims to provide natural interfaces to MeCab in Crystal.

This project is currently work-in-progress. While Wakame's internal direct binding to C has 100% coverage of the original C interfaces, it's currently lacking with higher-level abstractions in Crystal.

Dependencies

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      wakame:
        github: soya-daizu/wakame
  2. Run shards install

Usage

An example of usage through Wakame's internal direct binding to C is available under the examples/ directory. More guides will be added after Wakame supports higher-level abstractions.

Contributing

  1. Fork it (https://github.com/soya-daizu/wakame/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors