instance method query

Ruby on Rails 3.0.20

Since v3.0.20 Last seen in v6.0.6 Private

Available in: v3.0.20 v3.1.12 v3.2.22.5 v4.0.13 v4.1.16 v4.2.9 v5.2.8.1 v6.0.6

Signature

query(path, exts, formats)

No documentation comment.

Parameters

path req
exts req
formats req
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.each do |_path, source|
        next unless _path =~ /^#{query}$/
        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

Defined in actionpack/lib/action_view/testing/resolvers.rb line 18 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActionView::FixtureResolver

Type at least 2 characters to search.

↑↓ navigate · open · esc close