Skip to content

Commit

Permalink
Add documentation for asset_prefix and asset_environment
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Jul 3, 2011
1 parent 0613f3b commit 21344bc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions actionpack/lib/sprockets/helpers/rails_helper.rb
Expand Up @@ -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
Expand Down

0 comments on commit 21344bc

Please sign in to comment.