CKEditor for Rails.
Note: Latest gem version uses CKEditor 3.6.1.
This gem vendors CKEditor 3.6.1
for Rails 3.1
and greater. The files will
be added to the asset pipeline and available for you to use.
//= require ckeditor
You can also use it standalone in your views:
<%= javascript_include_tag 'ckeditor/ckeditor' %>
Important: It's important you define the CKEDITOR_BASEPATH
global
variable before you include the ckeditor
code. This will make ckeditor
work with theasset pipeline on production, otherwise you'll see a white screen
where CKEditor should be shown. More info here.
<script type="text/javascript">
var CKEDITOR_BASEPATH = '/ckeditor/';
</script>
<%= javascript_include_tag 'ckeditor/ckeditor' %>
In a Rails 3.1 apps include ckeditor-rails
in the Gemfile:
gem 'ckeditor-rails'
You're done!