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?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 6 down vote accepted

From http://ryanbigg.com/guides/asset_pipeline.html :

/* ...
*= require_self
*= require_tree .
*/

"In this example require_self is used. This will put the CSS contained within the file (if any) at the top of any other CSS in this file unless require_self is specified after another require directive."

link|improve this answer
feedback

//= require_self

It loads the file itself, to define the order that the files are loaded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.