About

The asset pipeline is a feature added to Rails 3.1 to provide improved organization and processing for javascript, stylesheets, and images. These assets can be separated into folders under app/assets/ for those that are application-specific, lib/assets/ for assets shared across multiple applications, and vendor/assets/ for third-party assets. Each of those folders would have subfolders like javascripts/, stylesheets/ and images/.

This is meant to eliminate what Rails creator David Heinemeier Hansson calls the "junk drawer" approach of putting all javascripts (for example) in the same folder, regardless of source.

Additionally, as Ryan Bigg has documented:

The asset pipeline provides a framework to concatenate and minify or compress Javascript and CSS assets. It also adds the ability to write these assets in other languages such as CoffeeScript, SCSS and ERB. -- ryanbigg.com/guides

history|show excerpt|excerpt history