aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-06-18 22:19:32 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-06-18 22:19:32 +0530
commit52252271105d02cfa46634e974f2fcfa5ddc84e1 (patch)
treec404375a7612750b6973b928b4598a118b2a7d4b /railties/guides/source
parent618802df714efa64a9f8a399afbd3ad07f914212 (diff)
downloadrails-52252271105d02cfa46634e974f2fcfa5ddc84e1.tar.gz
rails-52252271105d02cfa46634e974f2fcfa5ddc84e1.tar.bz2
rails-52252271105d02cfa46634e974f2fcfa5ddc84e1.zip
edit assets guide for cases & minor wording changes
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/asset_pipeline.textile6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile
index a3aee01b4a..2a3a172118 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 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.
+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 reduced, making the page load faster. Rails 3.1 includes the Sprockets gem.
h3. How to Use the Asset Pipeline
@@ -27,7 +27,7 @@ h4. Asset Organization
Assets can be placed inside an application in one of three locations: +app/assets+, +lib/assets+ or +vendor/assets+.
-+app/assets+ is for assets that are owned by the application, such as custom images, javascript files or stylesheets.
++app/assets+ is for assets that are owned by the application, such as custom images, JavaScript files or stylesheets.
+lib/assets+ is for your own libraries' code that doesn't really fit into the scope of the application or those libraries which are shared across applications.
@@ -96,4 +96,4 @@ WIP: Compressed Assets in Rails are served ... how?
h4. Adding Assets to Your Gems
-h4. Making Your Library or Gem a Pre-Processors
+h4. Making Your Library or Gem a Pre-Processor