method

all_template_paths

all_template_paths()
public

No documentation available.

# File actionview/lib/action_view/template/resolver.rb, line 120
    def all_template_paths # :nodoc:
      paths = template_glob("**/*")
      paths.map do |filename|
        filename.from(@path.size + 1).remove(/\.[^\/]*\z/)
      end.uniq.map do |filename|
        TemplatePath.parse(filename)
      end
    end