Flowdock
method

line_number

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActionView::TemplateError
line_number() 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 57
    def line_number
      @line_number ||=
        if file_name
          regexp = /#{Regexp.escape File.basename(file_name)}:(\d+)/

          $1 if message =~ regexp or clean_backtrace.find { |line| line =~ regexp }
        end
    end
Register or log in to add new notes.