Flowdock
method

build_query

Importance_0
v3.2.8 - 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 237
    def build_query(path, details)
      exts = EXTENSIONS.map { |ext| details[ext] }
      query = escape_entry(File.join(@path, path))

      query + exts.map { |ext|
        "{#{ext.compact.uniq.map { |e| ".#{e}," }.join}}"
      }.join
    end
Register or log in to add new notes.