diff options
author | Scott Stewart <scott@scopestar.com> | 2011-06-18 06:40:27 -0700 |
---|---|---|
committer | Scott Stewart <scott@scopestar.com> | 2011-06-18 06:40:27 -0700 |
commit | a637e1dcb1d954e32c7681dfdfd5a86adfdb5057 (patch) | |
tree | dbaf4f75792c89dd24c1743c4538ee16bc726bc3 /railties | |
parent | 0a45e24879a604924fea4cced7528fd98d1c3c35 (diff) | |
download | rails-a637e1dcb1d954e32c7681dfdfd5a86adfdb5057.tar.gz rails-a637e1dcb1d954e32c7681dfdfd5a86adfdb5057.tar.bz2 rails-a637e1dcb1d954e32c7681dfdfd5a86adfdb5057.zip |
Fixed typo in asset_pipeline, jquery_rails should be jquery-rails
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 fdfac8a9d9..4330e0a365 100644 --- a/railties/guides/source/asset_pipeline.textile +++ b/railties/guides/source/asset_pipeline.textile @@ -39,7 +39,7 @@ Any subdirectory that exists within these three locations will be added to the s h4. External Assets -Assets can also come from external sources such as engines. A good example of this is the +jquery_rails+ gem which comes with Rails 3.1 as standard. This gem contains an engine class which inherits from +Rails::Engine+. By doing this, Rails is informed that the directory for this gem may contain assets and the +app/assets+, +lib/assets+ and +vendor/assets+ directories of this engine are added to the search path of Sprockets. +Assets can also come from external sources such as engines. A good example of this is the +jquery-rails+ gem which comes with Rails 3.1 as standard. This gem contains an engine class which inherits from +Rails::Engine+. By doing this, Rails is informed that the directory for this gem may contain assets and the +app/assets+, +lib/assets+ and +vendor/assets+ directories of this engine are added to the search path of Sprockets. h4. Serving Assets |