Exception: ActionView::Template::Error
- Inherits:
-
ActionViewError
- Object
- StandardError
- ActionViewError
- ActionView::Template::Error
- Defined in:
- lib/action_view/template/error.rb
Overview
The Template::Error exception is raised when the compilation or rendering of the template fails. This exception then gathers a bunch of intimate details and uses it to report a precise exception message.
Constant Summary collapse
- SOURCE_CODE_RADIUS =
:nodoc:
3
Instance Attribute Summary collapse
-
#original_exception ⇒ Object
readonly
Returns the value of attribute original_exception.
Instance Method Summary collapse
- #annoted_source_code ⇒ Object
- #file_name ⇒ Object
-
#initialize(template, original_exception) ⇒ Error
constructor
A new instance of Error.
- #line_number ⇒ Object
- #source_extract(indentation = 0, output = :console) ⇒ Object
- #sub_template_message ⇒ Object
- #sub_template_of(template_path) ⇒ Object
Constructor Details
#initialize(template, original_exception) ⇒ Error
Returns a new instance of Error.
61 62 63 64 65 66 |
# File 'lib/action_view/template/error.rb', line 61 def initialize(template, original_exception) super(original_exception.) @template, @original_exception = template, original_exception @sub_templates = nil set_backtrace(original_exception.backtrace) end |
Instance Attribute Details
#original_exception ⇒ Object (readonly)
Returns the value of attribute original_exception.
59 60 61 |
# File 'lib/action_view/template/error.rb', line 59 def original_exception @original_exception end |
Instance Method Details
#annoted_source_code ⇒ Object
109 110 111 |
# File 'lib/action_view/template/error.rb', line 109 def annoted_source_code source_extract(4) end |
#file_name ⇒ Object
68 69 70 |
# File 'lib/action_view/template/error.rb', line 68 def file_name @template.identifier end |
#line_number ⇒ Object
101 102 103 104 105 106 107 |
# File 'lib/action_view/template/error.rb', line 101 def line_number @line_number ||= if file_name regexp = /#{Regexp.escape File.basename(file_name)}:(\d+)/ $1 if =~ regexp || backtrace.find { |line| line =~ regexp } end end |
#source_extract(indentation = 0, output = :console) ⇒ Object
81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/action_view/template/error.rb', line 81 def source_extract(indentation = 0, output = :console) return unless num = line_number num = num.to_i source_code = @template.source.split("\n") start_on_line = [ num - SOURCE_CODE_RADIUS - 1, 0 ].max end_on_line = [ num + SOURCE_CODE_RADIUS - 1, source_code.length].min indent = end_on_line.to_s.size + indentation return unless source_code = source_code[start_on_line..end_on_line] formatted_code_for(source_code, start_on_line, indent, output) end |
#sub_template_message ⇒ Object
72 73 74 75 76 77 78 79 |
# File 'lib/action_view/template/error.rb', line 72 def if @sub_templates "Trace of template inclusion: " + @sub_templates.collect { |template| template.inspect }.join(", ") else "" end end |
#sub_template_of(template_path) ⇒ Object
96 97 98 99 |
# File 'lib/action_view/template/error.rb', line 96 def sub_template_of(template_path) @sub_templates ||= [] @sub_templates << template_path end |