method

build_query

build_query(path, details)
public

No documentation available.

# File actionpack/lib/action_view/template/resolver.rb, line 244
    def build_query(path, details)
      exts = EXTENSIONS.map { |ext| details[ext] }
      query = escape_entry(File.join(@path, path))

      exts.each do |ext|
        query << "{"
        ext.compact.uniq.each { |e| query << ".#{e}," }
        query << "}"
      end

      query
    end