I’m using CKEditor v4.0 and ckeditor gem https://github.com/tsechingho/ckeditor-rails
Gemfile
gem 'ckeditor', '>= 4.0.0.rc1'
config.js
CKEDITOR.editorConfig = function( config ){
config.skin = 'moono',
config.disableNativeSpellChecker = true,
config.scayt_autoStartup = true,
config.toolbar = [
[ 'Bold', 'Italic', 'Underline', 'Strike', 'Blockquote', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink', '-', 'SpellChecker', 'Scayt' ]
]
};
I’ve been testing many possible solutions, I think that it is a problem with v4.0
In here http://drupal.org/node/1870398 user called “vinmassaro ” posted that if you set “Spell Check as You Type” on toolbar it work because the two type of spellcheck was compress in one button, but dosent work, not even the toolbar button it is shown :S
I don’t know how fix this but I found another gem that can do what I want, and if you want to use this feature you can use it with out any extra configuration.
https://github.com/tsechingho/ckeditor-rails