class Sprockets::Base

def find_asset(path, options = {})

Find asset by logical path or expanded path.
def find_asset(path, options = {})
  if uri = resolve_asset_uri(path, options)
    Asset.new(self, build_asset_by_uri(uri))
  end
end