Project

rwath

0.0
No commit activity in last 3 years
No release in over 3 years
RWath is ruby wrapper gem for Swath(Smart Word Analysis for THai).
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
~> 10.3
~> 3.0
 Project Readme

Rwath

Build Status Gem Version

rwath is simple wrapper for Swath(Smart Word Analysis for THai).

Installation

Before you use rwath, please install swath.

Debian like Linux distributions

$ sudo apt-get install swath

OSX with homebrew

Using my unoffical formula of swath:

$ brew tap cosmo0920/tokenizers
$ brew install cosmo0920/tokenizers/swath

install rwath

Add this line to your application's Gemfile:

gem 'rwath'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rwath

Usage

conf = Rwath::Config.new
conf.delimitor(char: ' ')
conf.encode(input: :utf8, output: :utf8)
rwath = Rwath.new(config: conf.setting)
text = "ตัวอักษรไทยเป็นเรื่องยาก"
puts result = rwath.split(text) # => ตัว อักษร ไทย เป็น เรื่อง ยาก

Contributing

  1. Fork it ( https://github.com/cosmo0920/rwath/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