module Sprockets::Rails::Helper

def compute_asset_path(path, options = {})

def compute_asset_path(path, options = {})
  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