Flowdock
method

template_exists?

Importance_0
v1.0.0 - Show latest stable - 0 notes - Class: ActionView::Base
template_exists?(template_path, extension) private

No documentation

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

Hide source
# File actionpack/lib/action_view/base.rb, line 311
      def template_exists?(template_path, extension)
        file_path = full_template_path(template_path, extension)
        @@method_names.has_key?(file_path) || FileTest.exists?(file_path)
      end
Register or log in to add new notes.