Flowdock
method

render_template

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActionView::Template
render_template() 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.rb, line 21
    def render_template
      render
    rescue Exception => e
      raise e unless filename
      if TemplateError === e
        e.sub_template_of(filename)
        raise e
      else
        raise TemplateError.new(self, @view.assigns, e)
      end
    end
Register or log in to add new notes.