# File lib/sprockets/index.rb, line 45
    def find_asset(path, options = {})
      if asset = @assets[path.to_s]
        asset
      elsif asset = super
        # Cache at logical path and expanded path
        @assets[path.to_s] = @assets[asset.pathname.to_s] = asset
        asset
      end
    end