我覺得我缺少一個重要步驟:安裝gem(bootstrap-wysihtml5)時,我必須手動移動javascript和css文件嗎?
當安裝gem
(即bootstrap-wysihtml5
)我應該採取什麼措施才能正常查找和引用JavaScript和CSS文件。
我將gem bootstrap-wysihtml5
添加到我的gem文件中,然後運行bundle install。
我把//= require bootstrap-wysithtml5
放在application.js
和*= require bootstrap-wysithtml5
的application.css
。
我得到以下錯誤:
Error compiling CSS asset
Sprockets::File not found: couldnt find file 'bootstrap-wysihtml5.css'
我是否有js和css手動複製到相關的應用程序/資產的文件,或者是有我丟失了關鍵的一步?
根據文檔,Rails的gem是'bootstrap-wysihtml5-rails',而不是'bootstrap-wysihtml5'。 –