aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/asset_pipeline.md
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-08 23:18:57 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-19 18:02:37 -0500
commit66ed71fd6fbbdc25148459a91074974287318bf5 (patch)
tree1615ff170385d2f580b60478b8ab384b2502e266 /guides/source/asset_pipeline.md
parentc4111ec5f84a549c759a154de9f5822b66d95385 (diff)
downloadrails-66ed71fd6fbbdc25148459a91074974287318bf5.tar.gz
rails-66ed71fd6fbbdc25148459a91074974287318bf5.tar.bz2
rails-66ed71fd6fbbdc25148459a91074974287318bf5.zip
Remove highly uncommon `config.assets.manifest` option for moving the manifest path.
This option is now unsupported in sprockets-rails.
Diffstat (limited to 'guides/source/asset_pipeline.md')
-rw-r--r--guides/source/asset_pipeline.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md
index b12a02a56a..be7ca5107d 100644
--- a/guides/source/asset_pipeline.md
+++ b/guides/source/asset_pipeline.md
@@ -456,12 +456,6 @@ application.css: application-8af74128f904600e41a6e39241464e03.css
The default location for the manifest is the root of the location specified in `config.assets.prefix` ('/assets' by default).
-This can be changed with the `config.assets.manifest` option. A fully specified path is required:
-
-```ruby
-config.assets.manifest = '/path/to/some/other/location'
-```
-
NOTE: If there are missing precompiled files in production you will get an `Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError` exception indicating the name of the missing file(s).
#### Far-future Expires header
@@ -728,9 +722,6 @@ config.assets.compile = false
# Generate digests for assets URLs.
config.assets.digest = true
-# Defaults to nil and saved in location specified by config.assets.prefix
-# config.assets.manifest = YOUR_PATH
-
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
# config.assets.precompile += %w( search.js )
```