public
Description: Simplest Ruby binding for Hunspell spelling checking library
Homepage: http://codemonkeycode.blogspot.com/
Clone URL: git://github.com/tiendung/rhunspell.git
name age message
file History.txt Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
file License.txt Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
file Manifest.txt Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
file PostInstall.txt Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
file README.txt Sat Sep 06 19:57:46 -0700 2008 default hompage at rubyforge [tiendung]
file Rakefile Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
directory config/ Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
directory lib/ Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
file rhunspell.gemspec Sat Sep 06 03:52:34 -0700 2008 add gemspec [tiendung]
directory script/ Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
file setup.rb Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
directory tasks/ Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
directory test/ Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
directory website/ Sat Sep 06 03:36:09 -0700 2008 change to ruby gem [tiendung]
README.txt
= rhunspell

* http://rhunspell.rubyforge.org/

== DESCRIPTION:

Simplest Ruby binding for Hunspell spelling checking library

== FEATURES/PROBLEMS:

* checking
* suggesting

== SYNOPSIS:
  
  require 'rhunspell'
  
  dict = Hunspell.new("names.aff", "names.dic")

  dict.check("acetech") # => true
  dict.check("abcxyz")  # => false

  dict.suggest("azetach") # => ["acetech"]

== REQUIREMENTS:

* RubyInline

== INSTALL:
* curl -O http://nchc.dl.sourceforge.net/sourceforge/hunspell/hunspell-1.2.7.tar.gz
  tar -zxvf hunspell-1.2.7.tar.gz
  cd hunspell-1.2.7
  ./configure
  make
  sudo make install


* sudo gem install RubyInline

* gem sources -a http://gems.github.com
* sudo gem install rhunspell

== LICENSE:

(The MIT License)

Copyright (c) 2008 Tien Dung

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.