There's no documentation for this item.
Source Code
# File active_support/core_ext/exception.rb, line 17 def clean_backtrace backtrace.collect do |line| Pathname.clean_within(TraceSubstitutions.inject(line) do |result, (regexp, sub)| result.gsub regexp, sub end) end end
<code/>and<pre/>for code samples.