diff options
author | Carlos Souza <carloshrsouza@gmail.com> | 2014-12-11 14:04:51 -0500 |
---|---|---|
committer | Carlos Souza <carloshrsouza@gmail.com> | 2014-12-11 14:04:51 -0500 |
commit | 5a6e3b308fe22f30212104c5f0ccc9d985c3db8e (patch) | |
tree | d571625ddae523c33ba0d6441459952b6e1aba5f /guides/source | |
parent | c0c6dd6aa27dd8e5ff334605fb133625b434f4bd (diff) | |
download | rails-5a6e3b308fe22f30212104c5f0ccc9d985c3db8e.tar.gz rails-5a6e3b308fe22f30212104c5f0ccc9d985c3db8e.tar.bz2 rails-5a6e3b308fe22f30212104c5f0ccc9d985c3db8e.zip |
Update guides with info about vendor/assets
fixes #17893
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/asset_pipeline.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index ae0f19c02a..8764546873 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -231,7 +231,9 @@ images, JavaScript files or stylesheets. scope of the application or those libraries which are shared across applications. * `vendor/assets` is for assets that are owned by outside entities, such as -code for JavaScript plugins and CSS frameworks. +code for JavaScript plugins and CSS frameworks. Keep in mind that third party +code with references to other files also processed by the asset Pipeline (images, +stylesheets, etc.), will need to be rewritten to use helpers like `asset_path`. WARNING: If you are upgrading from Rails 3, please take into account that assets under `lib/assets` or `vendor/assets` are available for inclusion via the |