Easy html body editor for when you need to add html content through your admin panel/form/etc. Ckeditor is a great solution for this and makes it very easy.
n/a
Pass in :ckeditor to simple_form.
$ rails g scaffold post title:string body:text
= simple_form_for(@post) do |f|
= f.error_notification
.form-inputs
= f.input :title
= f.input :body, as: :ckeditor
.form-actions
= f.button :submit