module Sprockets::Rails::Helper
def lookup_asset_for_path(path, options = {})
Internal method to support multifile debugging. Will
def lookup_asset_for_path(path, options = {}) return unless env = assets_environment path = path.to_s if extname = compute_asset_extname(path, options) path = "#{path}#{extname}" end env[path] end