Flowdock
method

find_template_paths

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: ActionView::PathResolver
find_template_paths(query) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/template/resolver.rb, line 228
    def find_template_paths(query)
      Dir[query].uniq.reject do |filename|
        File.directory?(filename) ||
          # deals with case-insensitive file systems.
          !File.fnmatch(query, filename, File::FNM_EXTGLOB)
      end
    end
Register or log in to add new notes.