raspell icon indicating copy to clipboard operation
raspell copied to clipboard

A Ruby binding for the Aspell spelling checker

Results 7 raspell issues
Sort by recently updated
recently updated
newest added

This fixes installation on newer Ubuntus and other distributions where -Werror=format-security is used. It also adds a gemspec which (beside being a good thing in itself;-) allows to use a...

Debian starting from wheezy compiles all packages with -Werror=format-security which propagates to all gems with native extensions via mkmf. Patch fixes errors like: raspell.c: In function ‘aspell_check’: raspell.c:483:9: error: format...

raspell contains memory leaks in `list_misspelled` and `correct_lines` due to not using `rb_ensure` to call `delete_aspell_document_checker` and free the checker. In `list_misspelled`, if an exception is railed from `rb_yield` or...

In `correct_file`, if IO#write raises an exception IO#close will not be called, leaking the file descriptor. `rb_ensure()` should be used to ensure the file descriptor is closed regardless of exceptions.

raspell suggest method returns asci-8bit strings instead of the correct encoding that was requested. ``` # -*- encoding : utf-8 -*- require 'raspell' w = "πράσυνο" as = Aspell.new('el_GR', nil,...

Depending on the numeric argument, the function pointer passed is expected to have different signatures. Up go gcc-13, it is only a warning (and the called method would have raised...