//= require kendo/kendo.web.min
right above the require_tree line
To app/assets/stylesheets/front.scss I added
*= require kendo/kendo.common.min
*= require kendo/kendo.default.min
above the require_self line
Then I just had to look at the ID hobo gave to my textarea field and
<custom-javascript:>
$(document).ready(function(){
$("#ticket_problem").kendoEditor();
});
</custom-javascript:>
to the tag that generates the field I wanted the Kendo editor on.
Worked like magic. Note I haven't fully tested if the formatting the editor added to the field all gets saved and output correctly when viewed yet. But that would be a specific problem to the textarea editor.
Bob