Flowdock
method

sub_template_message

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActionView::TemplateError
sub_template_message() public

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/template_error.rb, line 24
    def sub_template_message
      if @sub_templates
        "Trace of template inclusion: " +
        @sub_templates.collect { |template| strip_base_path(template) }.join(", ")
      else
        ""
      end
    end
Register or log in to add new notes.