我正在尋找一種相對較快的方法來檢查單詞是否拼寫錯誤,無論是使用gem還是API。簡單的拼寫檢查方法/寶石紅寶石?
我試過使用幾種寶石 - raspell,ffi-aspell,hunspell-ffi,spell_cheker和spellchecker - 並且每個都有不同的錯誤。
我對ruby很陌生,希望得到一個簡單的解決方案(我正在處理很多簡短的文本文件,並且想要計算錯誤拼寫的單詞的百分比),它不包括從頭開始構建的東西。
當試圖FFI-的aspell,我得到以下錯誤:
/Users/ntaylorthompson/.rvm/gems/ruby-1.9.2-p320/gems/ffi-aspell-0.0.3/lib/ffi/aspell/speller.rb:121: [BUG] Segmentation fault
ruby 1.9.2p320 (2012-04-20 revision 35421) [x86_64-darwin11.4.0]
-- control frame ----------
c:0005 p:---- s:0019 b:0019 l:000018 d:000018 CFUNC :speller_check
c:0004 p:0113 s:0013 b:0013 l:000012 d:000012 METHOD /Users/ntaylorthompson/.rvm/gems/ruby-1.9.2-p320/gems/ffi-aspell-0.0.3/lib/ffi/aspell/speller.rb:121
c:0003 p:0049 s:0007 b:0007 l:0005a8 d:0005d0 EVAL ffi-aspell_test.rb:5
c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH
c:0001 p:0000 s:0002 b:0002 l:0005a8 d:0005a8 TOP
---------------------------
-- Ruby level backtrace information ----------------------------------------
ffi-aspell_test.rb:5:in `<main>'
/Users/ntaylorthompson/.rvm/gems/ruby-1.9.2-p320/gems/ffi-aspell-0.0.3/lib/ffi/aspell/speller.rb:121:in `correct?'
/Users/ntaylorthompson/.rvm/gems/ruby-1.9.2-p320/gems/ffi-aspell-0.0.3/lib/ffi/aspell/speller.rb:121:in `speller_check'
-- C level backtrace information -------------------------------------------
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html
Abort trap: 6
我會感激或者(1)的替代方法於上述或(2)建議的建議,其中使用以上5個寶石 - 所以我至少可以花時間調試最好的選擇。
什麼錯誤是你得到些什麼?你有沒有爲aspell寶石安裝aspell? – jmdeldin 2012-07-07 20:43:21
我使用Homebrew安裝了Aspell,並且剛剛發佈了上述ffi-aspell錯誤 - 任何見解? – TaylorT 2012-07-09 14:03:26