# File lib/sprockets/rails/helper.rb, line 72 def compute_asset_path(path, options = {}) # Check if we are inside Sprockets context before calling check_dependencies!. check_dependencies!(path) if defined?(depend_on) if digest_path = asset_digest_path(path) path = digest_path if digest_assets path += "?body=1" if options[:debug] File.join(assets_prefix || "/", path) else super end end