Flowdock
method

extract_callstack

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: Reporting
extract_callstack(callstack) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/deprecation/reporting.rb, line 140
        def extract_callstack(callstack)
          return [] if callstack.empty?
          return _extract_callstack(callstack) if callstack.first.is_a? String

          offending_line = callstack.find { |frame|
            # Code generated with `eval` doesn't have an `absolute_path`, e.g. templates.
            path = frame.absolute_path || frame.path
            path && !ignored_callstack?(path)
          } || callstack.first

          [offending_line.path, offending_line.lineno, offending_line.label]
        end
Register or log in to add new notes.