Flowdock
method

find_template

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: Digestor
find_template(finder, *args) 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/digestor.rb, line 71
        def find_template(finder, *args)
          finder.disable_cache do
            if format = finder.rendered_format
              finder.find_all(*args, formats: [format]).first || finder.find_all(*args).first
            else
              finder.find_all(*args).first
            end
          end
        end
Register or log in to add new notes.