diff options
author | Xavier Noria <fxn@hashref.com> | 2013-08-26 15:08:31 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-08-26 15:08:31 -0700 |
commit | 44cbad84dce16a23fcf381f6aadc0a0c4ed877b1 (patch) | |
tree | bee30344d98ab1435f2cfc030dcb714cce4d04bf | |
parent | 55870cd8ddab26149b8383651b6ef6bf68c404b2 (diff) | |
parent | 9cd453516ea1d893fd3f9f2969e0f589be14e7bc (diff) | |
download | rails-44cbad84dce16a23fcf381f6aadc0a0c4ed877b1.tar.gz rails-44cbad84dce16a23fcf381f6aadc0a0c4ed877b1.tar.bz2 rails-44cbad84dce16a23fcf381f6aadc0a0c4ed877b1.zip |
Merge pull request #11986 from fedesoria/patch-3
Warning on doc for assets under lib|vendor not precompiling
-rw-r--r-- | guides/source/asset_pipeline.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index 0b553ca75f..8fa86cb516 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -235,6 +235,11 @@ 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. +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 +application manifests but no longer part of the precompile array. See +[Precompiling Assets](#precompiling-assets) for guidance. + #### Search Paths When a file is referenced from a manifest or a helper, Sprockets searches the |