aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/paths.rb
blob: 628546e4436bfe4c88f9debdbc28aee86316f1f3 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
module ActionView #:nodoc:
  class PathSet < Array #:nodoc:
    %w(initialize << concat insert push unshift).each do |method|
      class_eval <<-METHOD, __FILE__, __LINE__ + 1
        def #{method}(*args)
          super
          typecast!
        end
      METHOD
    end

    def find(path, details = {}, prefix = nil, partial = false, key=nil)
      each do |resolver|
        if template = resolver.find(path, details, prefix, partial)
          return template
        end
      end
      
      raise ActionView::MissingTemplate.new(self, "#{prefix}/#{path}", details, partial)
    end
    
    def exists?(path, details = {}, prefix = nil, partial = false, key=nil)
      each do |resolver|
        if resolver.find(path, details, prefix, partial)
          return true
        end
      end
      false
    end

  protected

    def typecast!
      each_with_index do |path, i|
        next unless path.is_a?(String)
        self[i] = FileSystemResolver.new(path)
      end
    end
  end
end