I could not find much on the web and it took me a little time to get everything working (especially saving edited content) so I’ll share some code, hopefully to save you some time. In apps/views/layouts/application.html.erb I added some boilerplate (with non-editor stuff not shown) to be included with each rendered page:
href="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/tundra/tundra.css">
href= "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/editor/plugins/resources/css/Save.css">
djConfig="parseOnLoad: true">
Then in my view I create an inline rich editor using:
extraPlugins="[{name: 'save', url: 'task'}]">
<%= raw(@task_current.content) %>
