public Method

TemplateError.line_number

There's no documentation for this item.

Source Code

# File action_view/template_error.rb, line 56
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
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.