instance method
query
Ruby on Rails 3.0.20
Since v3.0.20 Last seen in v6.0.6 PrivateSignature
query(path, exts, formats)
No documentation comment.
Parameters
-
pathreq -
extsreq -
formatsreq
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