Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am struggling to find any real documentation on the new Rails 3 asset pipeline. I know there is a video, but I do not wish to watch an hour video in this format. I watched about 10 minutes and gained no knowledge.

So, what do I need to know about Rails 3 asset pipelines? What does this mean to my previous projects, and what does it mean to my future projects?

share|improve this question
Can you please share the link to this video? – Mayank Jain Oct 12 '12 at 17:24

2 Answers

up vote 8 down vote accepted

It means you will now be able to write css and javascript in separate files using sass and coffeescript if you want and they will be compiled into one single file in the end.

If you have like, 4 css files on your assets/stylesheets they will be concatenated and compressed and delivered on production with a single application.css file.

Same thing applies to javascript files.

More info in http://getsprockets.org/

share|improve this answer

You can get some good documentation here on rails guides here

http://edgeguides.rubyonrails.org/asset_pipeline.html

It's a great way to serve fast assets for your application. Sprockets is playing a major role in it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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