aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorMohammad Typaldos <mohammad.elabid@gmail.com>2011-06-18 09:00:13 -0700
committerMohammad Typaldos <mohammad.elabid@gmail.com>2011-06-18 09:00:13 -0700
commit618802df714efa64a9f8a399afbd3ad07f914212 (patch)
tree24b1f67b5ac16eb0b18fcf635fa64cc10ef2445b /railties/guides
parent4a36817b5d437b6d78563a298b2634c05803a0c6 (diff)
downloadrails-618802df714efa64a9f8a399afbd3ad07f914212.tar.gz
rails-618802df714efa64a9f8a399afbd3ad07f914212.tar.bz2
rails-618802df714efa64a9f8a399afbd3ad07f914212.zip
Sprockets itself doesn't do this, it's uglifier and other gems, Sprockets is just the puppet master.
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/asset_pipeline.textile4
1 files changed, 1 insertions, 3 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile
index 5e75dd3578..a3aee01b4a 100644
--- a/railties/guides/source/asset_pipeline.textile
+++ b/railties/guides/source/asset_pipeline.textile
@@ -13,9 +13,7 @@ endprologue.
h3. What Is The Asset Pipeline?
-With Rails 3.1 comes a new feature known as the asset pipeline. The asset pipeline provides features that have usually been implemented by external gems, such as Jammit and Sprockets. These gems would serve concatenated or compressed versions of the assets of an application, such as stylesheets or javascript files so that the number of requests made to the server are lessened, making the page load faster.
-
-By having this now as a core feature of Rails, all developers can benefit from the power of having their assets pre-processed, compressed and minified by one central gem, Sprockets.
+With Rails 3.1 comes a new feature known as the asset pipeline. The asset pipeline provides features that have usually been implemented by external gems, such as Jammit and Sprockets. These gems would serve concatenated or compressed versions of the assets of an application, such as stylesheets or javascript files so that the number of requests made to the server are lessened, making the page load faster. Rails 3.1 now includes the later gem, Sprockets.
h3. How to Use the Asset Pipeline