I imported a css.sass file which in turn has :
@import "mountable_engine/file.sass"
But due to some weird reason some of the sass files are found and for some I get the following error :
ActionView::Template::Error (File to import not found or unreadable:
mountable_engine/file1.sass
How can I get rid of this error?
*EDIT : * This is happening within a mountable engine
It seems it was my own mistake. There was an issue with pre-compiling assets so somehow that file was left out by rails. After clearing the rails cache folder and re-running assets precompile my issue was solved.