我在Ruby on Rails 4应用程序中使用galetahub/ckeditor gem(版本4.0.6)。我在其自述文件中遵循指南,但当我在//= require ckeditor/override
文件中添加application.js
清单语句时,我收到以下错误:
Sprockets::FileNotFound - couldn't find file 'ckeditor/override'
我的application.js
文件是:
//= require jquery
//= require jquery.turbolinks
//= require jquery_ujs
//= require jquery.ui.all
//= require turbolinks
//
//= require ckeditor/override
//= require ckeditor/init
我该如何解决这个问题?
注意:由于我不需要使用上传功能,因此我会跳过“How generate models for store uploading files”中的说明。
我的Gemfile
是:
gem 'rails', '4.0.1.rc1'
...
gem 'turbolinks'
gem 'jquery-turbolinks', :git => 'https://github.com/kossnocorp/jquery.turbolinks.git'
gem 'ckeditor'
...
答案 0 :(得分:4)
请将您的宝石'ckeditor'更新到最新的。
运行bundle show
检查gem版本。
在Gemfile中添加以下内容:
gem "ckeditor", :git => "git@github.com:galetahub/ckeditor.git"
然后运行bundle update
它对我有用。
答案 1 :(得分:2)
我在这里遇到了同样的问题,我的gem ckeditor版本是4.0.6。
使用命令
bundle open ckeditor
发现app / assets / javascript / ckeditor下没有override.js.erb文件,发布gem时可能是个错误?我不知道。我正在使用 inruby 建议的方式,它可以工作。
gem "ckeditor", :git => "https://github.com/galetahub/ckeditor.git"
答案 2 :(得分:0)
我认为您不需要override
因为实际文件是app/assets/javascripts/ckeditor/override.js.erb
。
如果不加入会怎么样?