From 21344bc33bb732c9c938881ec13bd7fd44d7e9d8 Mon Sep 17 00:00:00 2001 From: Sam Pohlenz Date: Sun, 3 Jul 2011 10:29:04 +0930 Subject: [PATCH] Add documentation for asset_prefix and asset_environment --- actionpack/lib/sprockets/helpers/rails_helper.rb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/actionpack/lib/sprockets/helpers/rails_helper.rb b/actionpack/lib/sprockets/helpers/rails_helper.rb index 748541746cce..68bc63105fc6 100644 --- a/actionpack/lib/sprockets/helpers/rails_helper.rb +++ b/actionpack/lib/sprockets/helpers/rails_helper.rb @@ -79,10 +79,19 @@ def debug_assets? params[:debug_assets] == 'true' end + # Override to specify an alternative prefix for asset path generation. + # When combined with a custom +asset_environment+, this can be used to + # implement themes that can take advantage of the asset pipeline. + # + # If you only want to change where the assets are mounted, refer to + # +config.assets.prefix+ instead. def asset_prefix Rails.application.config.assets.prefix end + # Override to specify an alternative asset environment for asset + # path generation. The environment should already have been mounted + # at the prefix returned by +asset_prefix+. def asset_environment Rails.application.assets end