dshipper
dshipper

Reputation: 3529

Auto-Correct Spelling Errors Rails Application

I'm trying to build a Rails application that auto-corrects the spelling of a Rails form after it submits. I realize that the auto-correcting won't be 100%, but I'm wondering if their are any good Ruby gems that I can use to do something like this.

So basically someone enters a few sentences into a text area, presses submit, the controller goes in takes the text and corrects any obvious spelling errors and then saves the "supposedly" error-free text to the database.

Any suggestions? Thanks in advance :)

Upvotes: 1

Views: 438

Answers (1)

Sam 山
Sam 山

Reputation: 42863

Might try this:

gem install spellingbee

Upvotes: 1

Related Questions