instance method query

Ruby on Rails 4.0.13

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 22
    def query(path, exts, formats)
      query = ""
      EXTENSIONS.each do |ext|
        query << '(' << exts[ext].map {|e| e && Regexp.escape(".#{e}") }.join('|') << '|)'
      end
      query = /^(#{Regexp.escape(path)})#{query}$/

      templates = []
      @hash.each do |_path, array|
        source, updated_at = array
        next unless _path =~ query
        handler, format = extract_handler_and_format(_path, formats)
        templates << Template.new(source, _path, handler,
          :virtual_path => path.virtual, :format => format, :updated_at => updated_at)
      end

      templates.sort_by {|t| -t.identifier.match(/^#{query}$/).captures.reject(&:blank?).size }
    end

Defined in actionpack/lib/action_view/testing/resolvers.rb line 22 · 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