Flowdock
method

find_template_paths

Importance_0
v5.2.3 - 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 246
      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.