Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 659 Bytes

README.textile

File metadata and controls

24 lines (13 loc) · 659 Bytes

Spell Checker v0.0.3

Intro

Simple spell checker using word stemming. A basic word list is used to match words against. Word stemming is used to reduce the size of the list and be a bit smarter about the way we match the words.

Installation

Install the spell checker as a gem

gem install spell_checker

Usage

You can create the spell checker with a standard new command
spell = SpellChecker.new

Methods

check_word(string) – returns boolean

check_paragraph(string) – returns an array containing a hash per spelling failure of a word.
– the hash contains :stemmed_word, :searched_word, :suggested_words