In rails3.1 application.css
we could see
/*
*= require_self
*= require_tree .
*/
I know that require_tree .
is just telling the system to bundle together everything from the stylesheets folder into a single file.
But what does require_self
tells?