method
extract_callstack
v6.1.3.1 -
Show latest stable
- Class:
ActiveSupport::Deprecation::Reporting
extract_callstack(callstack)private
No documentation available.
# File activesupport/lib/active_support/deprecation/reporting.rb, line 127
def extract_callstack(callstack)
return _extract_callstack(callstack) if callstack.first.is_a? String
offending_line = callstack.find { |frame|
frame.absolute_path && !ignored_callstack(frame.absolute_path)
} || callstack.first
[offending_line.path, offending_line.lineno, offending_line.label]
end