I have a Rails 3.1 project and I'm trying to include a jQuery plugin that has both js, css and image files and i've put them under vendor/assets/chosen/{images,javascripts,stylesheets} and i've added index.css and index.js to the respective dirs.
Then i try to include the plugin in application.css and application.js with this:
application.js:
//= require chosen
application.css
/*
*= require chosen
*/
But when i load the page i get this error:
couldn't find file 'chosen'
(in /..../app/assets/stylesheets/screen.css:8)
According to this page under 2.1.2 you should be able to do this with at least the lib dir (which i've tried, same result). Anyone has any tips?
Update:
When i inspect assets.paths in the rails console vendor/assets/chosen is included.
libfolder mentions that in order for that to work you'll need anindex.jsfile in the plugin root directory. Could it be that chosen doesn't have one? – Frost Feb 22 at 10:54