I am implementing user search functionality in my Rails application. I want the application to suggest the correct spellings if the user makes a mistake in typing the spelling. Is there any plugin for this in ruby. Can this be done in sql?

Regards, Pankaj

link|improve this question

30% accept rate
1  
Are you matching against a big dictionary or a small set of search terms? – detunized Mar 10 '11 at 11:05
feedback

1 Answer

It looks like hunspell gem is there to help you. It requires some external dependencies so it's not pure Ruby. But according to this readme it seem to be exactly what you are looking for.

Alternatively, you can try BOSSMan. It looks like it spell checks via Yahoo.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.