diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-06-28 02:16:56 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-06-28 02:16:56 +0530 |
commit | adf334853fd1f01056f8c2739caa08d42449293e (patch) | |
tree | 35e66a98e7c320c200b53633c083885bef152d6c /railties | |
parent | 2fd1f2e84319c0796ba6887435e6cf172f715da7 (diff) | |
download | rails-adf334853fd1f01056f8c2739caa08d42449293e.tar.gz rails-adf334853fd1f01056f8c2739caa08d42449293e.tar.bz2 rails-adf334853fd1f01056f8c2739caa08d42449293e.zip |
fix javascript case
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/asset_pipeline.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile index 49901c4f3a..6de03e54a6 100644 --- a/railties/guides/source/asset_pipeline.textile +++ b/railties/guides/source/asset_pipeline.textile @@ -13,7 +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 Ruby libraries, such as Jammit and Sprockets. These libraries 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 includes the +sprockets-rails+ gem, which depends on the +sprockets+ gem, by default. +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 Ruby libraries, such as Jammit and Sprockets. These libraries 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 includes the +sprockets-rails+ gem, which depends on the +sprockets+ gem, by default. 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 library, Sprockets. |