I want to include one theme folder https://github.com/usmanhalalit/charisma to my application.
As this document http://guides.rubyonrails.org/asset_pipeline.html#asset-organization , I clone the theme folder to the app/assets/charisma , and put
config.assets.paths << Rails.root.join("app", "assets", "charisma")
to my application config.
Then I create index.js and index.css on app/assets/charisma/:
/*
*= require_tree .
*/
//= require_tree .
Then I add //= require charisma
to my application.js , it gave error : couldn't find file 'charisma'
when my application run