= private = protected
template_exists?(template_path, extension)
Asserts the existence of a template.
# File actionpack/lib/action_view/base.rb, line 379 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