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
-
#cause ⇒ Object
readonly
Override to prevent #cause resetting during re-raise.
Instance Method Summary collapse
- #annotated_source_code ⇒ Object
- #file_name ⇒ Object
-
#initialize(template) ⇒ Error
constructor
A new instance of Error.
- #line_number ⇒ Object
- #source_extract(indentation = 0) ⇒ Object
- #sub_template_message ⇒ Object
- #sub_template_of(template_path) ⇒ Object
Constructor Details
#initialize(template) ⇒ Error
Returns a new instance of Error.
64 65 66 67 68 69 |
# File 'lib/action_view/template/error.rb', line 64 def initialize(template) super($!.) set_backtrace($!.backtrace) @cause = $! @template, @sub_templates = template, nil end |
Instance Attribute Details
#cause ⇒ Object (readonly)
Override to prevent #cause resetting during re-raise.
62 63 64 |
# File 'lib/action_view/template/error.rb', line 62 def cause @cause end |
Instance Method Details
#annotated_source_code ⇒ Object
112 113 114 |
# File 'lib/action_view/template/error.rb', line 112 def annotated_source_code source_extract(4) end |
#file_name ⇒ Object
71 72 73 |
# File 'lib/action_view/template/error.rb', line 71 def file_name @template.identifier end |
#line_number ⇒ Object
104 105 106 107 108 109 110 |
# File 'lib/action_view/template/error.rb', line 104 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) ⇒ Object
84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/action_view/template/error.rb', line 84 def source_extract(indentation = 0) return [] unless num = line_number num = num.to_i source_code = @template.encode!.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) end |
#sub_template_message ⇒ Object
75 76 77 78 79 80 81 82 |
# File 'lib/action_view/template/error.rb', line 75 def if @sub_templates "Trace of template inclusion: " + @sub_templates.collect(&:inspect).join(", ") else "" end end |
#sub_template_of(template_path) ⇒ Object
99 100 101 102 |
# File 'lib/action_view/template/error.rb', line 99 def sub_template_of(template_path) @sub_templates ||= [] @sub_templates << template_path end |