method
all_template_paths
v7.2.3 -
Show latest stable
- Class:
ActionView::FileSystemResolver
all_template_paths()public
No documentation available.
# File actionview/lib/action_view/template/resolver.rb, line 118
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