Flowdock
method

build_query

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: OptimizedFileSystemResolver
build_query(path, details) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.