https://github.com/uetchy/cabocha-ruby
Ruby bindings for CaboCha.
https://github.com/uetchy/cabocha-ruby
Last synced: about 1 year ago
JSON representation
Ruby bindings for CaboCha.
- Host: GitHub
- URL: https://github.com/uetchy/cabocha-ruby
- Owner: uetchy
- License: bsd-3-clause
- Created: 2015-02-25T06:37:21.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-01-28T13:37:44.000Z (over 10 years ago)
- Last Synced: 2025-03-29T11:34:42.050Z (about 1 year ago)
- Language: C++
- Size: 27.3 KB
- Stars: 6
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cabocha-ruby
cabocha-ruby is a gem that provides Ruby bindings for CaboCha.
It is actually SWIG-generated files.
## Usage
```ruby
require 'cabocha' # or require 'CaboCha'
parser = CaboCha::Parser.new
```
## Install
cabocha-ruby pre-requires `CaboCha`. You __MUST__ install them beforehand.
```console
$ gem install cabocha
```
or, add this into __Gemfile__
```ruby
gem "cabocha"
```
And then execute:
```console
$ bundle
```
## Contributing
1. Fork it ( https://github.com/uetchy/cabocha-ruby/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
## License
This is based on [CaboCha SWIG bindings](https://code.google.com/p/cabocha/).