method

template_glob

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: ActionView::FixtureResolver
template_glob(glob) 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/testing/resolvers.rb, line 26
      def template_glob(glob)
        @hash.keys.filter_map do |path|
          "/#{path}" if File.fnmatch(glob, path)
        end
      end
Register or log in to add new notes.