ueditor-rails icon indicating copy to clipboard operation
ueditor-rails copied to clipboard

Rails asset pipeline integration for Ueditor

Rails 3.1 Integration for Ueditor

The ueditor-rails gem integrates the Ueditor editor with the Rails 3.1 asset pipeline.

Instructions

1. Add ueditor-rails to your Gemfile

gem 'ueditor-rails'

Be sure to add to the global group, not the assets group. Then run bundle install.

2. Include the Ueditor assets

Use one of the following options to include Ueditor assets.

(1) Add to your application.js:

//= require ueditor

(2) The Ueditor assets can be included on a per-page basis using js:

Ueditor has many options and plugins, the document is here Ueditor document .

Using ueditor-rails as an Engine Dependency

Ensure that you explicitly require ueditor-rails within your engine file. Including ueditor-rails as a dependency in your gemspec is not enough.

Updating

When new versions of Ueditor are released, simply update the ueditor-rails gem to the latest version. There is no need to run any extra rake tasks (apart from rake assets:precompile).