Flowdock
query(path, exts, formats) private

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/testing/resolvers.rb, line 18
    def query(path, exts, formats)
      query = Regexp.escape(path)
      exts.each do |ext|
        query << '(' << ext.map {|e| e && Regexp.escape(".#{e}") }.join('|') << '|)'
      end

      templates = []
      @hash.select { |k,v| k =~ /^#{query}$/ }.each do |path, source|
        handler, format = extract_handler_and_format(path, formats)
        templates << Template.new(source, path, handler,
          :virtual_path => path, :format => format)
      end

      templates.sort_by {|t| -t.identifier.match(/^#{query}$/).captures.reject(&:blank?).size }
    end
Register or log in to add new notes.