method
all_template_paths
v7.1.3.2 -
Show latest stable
- Class:
ActionView::FileSystemResolver
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