aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/lib/fixture_template.rb
blob: a7f0490984b2f1bed741b6c160b2b53b09e4a2f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module ActionView #:nodoc:
  class FixtureResolver < PathResolver
    def initialize(hash = {})
      super()
      @hash = hash
    end

  private

    def query(path, exts)
      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|
        templates << Template.new(source, path, *path_to_details(path))
      end
      templates.sort_by {|t| -t.details.values.compact.size }
    end

  end
end